useless array list removed
This commit is contained in:
parent
691979d6f6
commit
27ec4f9feb
|
|
@ -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 ! */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue