Skip to content

Commit e3c4f94

Browse files
authored
Remove spaces from stub that break the test runner (exercism#1991)
1 parent 46c92c1 commit e3c4f94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
public class SalaryCalculator {
2-
public double multiplierPerDaysSkipped (int daysSkipped) {
2+
public double multiplierPerDaysSkipped(int daysSkipped) {
33
throw new UnsupportedOperationException("Please implement the SalaryCalculator.multiplierPerDaysSkipped() method");
44
}
55

6-
public int multiplierPerProductsSold (int productsSold) {
6+
public int multiplierPerProductsSold(int productsSold) {
77
throw new UnsupportedOperationException("Please implement the SalaryCalculator.multiplierPerProductsSold() method");
88
}
99

10-
public double bonusForProductSold (int productsSold) {
10+
public double bonusForProductSold(int productsSold) {
1111
throw new UnsupportedOperationException("Please implement the SalaryCalculator.bonusForProductSold() method");
1212
}
1313

14-
public double finalSalary (int daysSkipped, int productsSold) {
14+
public double finalSalary(int daysSkipped, int productsSold) {
1515
throw new UnsupportedOperationException("Please implement the SalaryCalculator.finalSalary() method");
1616
}
1717
}

0 commit comments

Comments
 (0)