Skip to content

Commit

Permalink
Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 24, 2025
1 parent 3c3a5f2 commit d7b7603
Show file tree
Hide file tree
Showing 6 changed files with 362 additions and 555 deletions.
9 changes: 5 additions & 4 deletions examples/java/Tiled/World.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,11 @@ public void loadMap(String mapFile) {
}
} else if ("enemy".equals(object.type)) {
switch (object.name) {
case "bamboo": {
this.add(new Bamboo(object.x, object.y));
break;
}
case "bamboo":
{
this.add(new Bamboo(object.x, object.y));
break;
}
}
}
}
Expand Down
Loading

0 comments on commit d7b7603

Please sign in to comment.