File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
exercises/concept/salary-calculator/src/main/java Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
public class SalaryCalculator {
2
- public double multiplierPerDaysSkipped (int daysSkipped ) {
2
+ public double multiplierPerDaysSkipped (int daysSkipped ) {
3
3
throw new UnsupportedOperationException ("Please implement the SalaryCalculator.multiplierPerDaysSkipped() method" );
4
4
}
5
5
6
- public int multiplierPerProductsSold (int productsSold ) {
6
+ public int multiplierPerProductsSold (int productsSold ) {
7
7
throw new UnsupportedOperationException ("Please implement the SalaryCalculator.multiplierPerProductsSold() method" );
8
8
}
9
9
10
- public double bonusForProductSold (int productsSold ) {
10
+ public double bonusForProductSold (int productsSold ) {
11
11
throw new UnsupportedOperationException ("Please implement the SalaryCalculator.bonusForProductSold() method" );
12
12
}
13
13
14
- public double finalSalary (int daysSkipped , int productsSold ) {
14
+ public double finalSalary (int daysSkipped , int productsSold ) {
15
15
throw new UnsupportedOperationException ("Please implement the SalaryCalculator.finalSalary() method" );
16
16
}
17
17
}
You can’t perform that action at this time.
0 commit comments