useless array list removed

This commit is contained in:
marce 2025-04-17 10:45:34 +02:00
parent 691979d6f6
commit 27ec4f9feb
1 changed files with 6 additions and 6 deletions

View File

@ -97,11 +97,15 @@ private ArrayList<int[]> highlightedPositions = new ArrayList<>();
public ArrayList<Piece> getPieces() {
return new ArrayList<>(pieces);
return pieces;
}
public String toString() {
//TODO
return "";
}
public void userTouch(int x, int y) {
//TODO
@ -124,10 +128,6 @@ private ArrayList<int[]> highlightedPositions = new ArrayList<>();
}
public String toString() {
//TODO
return "";
}
/* The following methods require more work ! */