Skip to content

Commit

Permalink
Fix parameter name of notConsumed to avoid confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
tipsy committed Apr 10, 2017
1 parent 27a77d8 commit 4a5090a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -42,8 +42,8 @@ public boolean notConsumed() {
return notConsumed;
}

public void notConsumed(boolean consumed) {
notConsumed = consumed;
public void notConsumed(boolean notConsumed) {
this.notConsumed = notConsumed;
}

@Override
Expand Down

0 comments on commit 4a5090a

Please sign in to comment.