Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/nullpointerexception #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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);
}
}
}