Skip to content

Commit

Permalink
adhere to style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-771 committed Nov 3, 2023
1 parent 4c4e776 commit fd304e9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,9 @@ public void TooManyTentsTest() throws InvalidFileFormatException {

for (int i = 0; i < board.getHeight(); i++) {
for (int k = 0; k < board.getWidth(); k++) {
if((k == 1)&&(i == 1))
if((k == 1)&&(i == 1)) {
continue;
}
TreeTentCell c = board.getCell(k, i);
c.setData(TreeTentType.TENT);
board.addModifiedData(c);
Expand Down

0 comments on commit fd304e9

Please sign in to comment.