renaming method according to content: thousand -> hundred

This commit is contained in:
cror
2019-01-16 17:14:35 +01:00
parent 438ff48c27
commit 2b7e66a398
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ public class Customer {
return this.points > points;
}
public boolean hasOverThousandPoints() {
public boolean hasOverHundredPoints() {
return this.points > 100;
}