Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,12 @@ public void setNextChain(IATMDispenseChain nextChain) {
}

public abstract void dispense(int amount);

public void nextChain(int amount) {
if (this.nextChain != null) {
this.nextChain.dispense(amount);
} else {
System.out.println("No notes can be dispensed");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public void dispense(int amount) {
int remainingAmount = amount % 10;
System.out.println("Number of 10 Rs notes are " + String.valueOf(notes));
} else if (amount > 0) {
this.nextChain.dispense(amount);
nextChain(amount);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public void dispense(int amount) {
System.out.println("Number of 20 Rs notes are " + String.valueOf(notes));
this.nextChain.dispense(remainingAmount);
} else if (amount > 0) {
this.nextChain.dispense(amount);
nextChain(amount);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public void dispense(int amount) {
System.out.println("Number of 50 Rs notes are " + String.valueOf(notes));
this.nextChain.dispense(remainingAmount);
} else if (amount > 0) {
this.nextChain.dispense(amount);
nextChain(amount);
}
}
}