Skip to content

Commit

Permalink
Checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlestian23 committed Nov 14, 2023
1 parent 985b425 commit 5367699
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,11 @@ private void trueOrTestHelper(String filePath) throws InvalidFileFormatException
public void FalseOrTest() throws InvalidFileFormatException {
String path = "puzzles/shorttruthtable/rules/OrIntroductionDirectRule/";
String[] letters = {"T", "F", "U"};
for (String first : letters)
for (String second : letters)
for (String first : letters) {
for (String second : letters) {
falseOrTestHelper(path + first + "U" + second);
}
}
}


Expand Down

0 comments on commit 5367699

Please sign in to comment.