Removed unused imports and provided JavaDocs.

This commit is contained in:
Jonathan Turner 2024-02-11 20:25:09 -05:00
parent d6a0ddcd8d
commit 7242c5985f

View File

@ -10,7 +10,7 @@ import Assignments.A1.models.Board;
*/ */
public class Move { public class Move {
private Board board; private final Board board;
private final Pair<Integer> points; private final Pair<Integer> points;
private boolean used; private boolean used;