Skip to content

Commit 7742e26

Browse files
committed
fix solution
1 parent 12449f1 commit 7742e26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Employee.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public int getSalaryInEuro() {
2424

2525
public void setSalaryInEuro(int salaryInEuro)
2626
throws SalaryDecreaseException, SalaryIncreaseTooHighException {
27-
if (salaryInEuro > salaryInEuro) {
27+
if (this.salaryInEuro > salaryInEuro) {
2828
throw new SalaryDecreaseException();
2929
}
3030

0 commit comments

Comments
 (0)