Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
2onefan2 committed Apr 29, 2024
1 parent de570c9 commit a5d1f47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/uta/cse3310/GridField.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class GridField {
private char[][] grid;
private ArrayList<String> wordList = new ArrayList<>();
private int remainingWords;

public GridField(ArrayList<String> wordList) {
this.wordList = wordList;
this.remainingWords = wordList.size();
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/uta/cse3310/GridFieldTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ public void testPlaceRandomWords() {
assertTrue(gridField.checkWord(word));
}
}
}
}

0 comments on commit a5d1f47

Please sign in to comment.