Skip to content

Commit

Permalink
removing test dashes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge-Hurt committed Apr 28, 2024
1 parent 39f6df1 commit bd7038e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/uta/cse3310/Puzzle.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void fillRandomLetters() {
for(int i = 0; i < rows; i++) {
for(int j = 0; j < columns; j++) {
if( wordSearchPuzzle[i][j] == '-') {
wordSearchPuzzle[i][j] = '-';//letters[rand.nextInt(letters.length)];
wordSearchPuzzle[i][j] = letters[rand.nextInt(letters.length)];
fillerNum++;
}

Expand Down

0 comments on commit bd7038e

Please sign in to comment.