Skip to content

Commit

Permalink
Removed FIXME's
Browse files Browse the repository at this point in the history
  • Loading branch information
10407499 committed Apr 19, 2022
1 parent fb12d95 commit 0959735
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/addon/Highscore.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void setHighscore() throws FileNotFoundException {

public List<Integer> getTop5() {
List<Integer> ph = new ArrayList<>();
List<Integer> res = new ArrayList<>(); // FIXME
List<Integer> res = new ArrayList<>();

for (int i = 0; i < topScore.size(); i++) {
ph.add(topScore.get(i));
Expand Down
1 change: 0 additions & 1 deletion src/gui/GameGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ private void wholeHighscore(int amount) {
}

private void checkHighscore(int amount) {
//FIXME highscore to top5
if (highScore.checkIfHigher(amount)) {
lblHighscore.setText("NEW HIGHSCORE!");
} else {
Expand Down

0 comments on commit 0959735

Please sign in to comment.