Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbraginskiy committed Jul 26, 2024
1 parent e07e86f commit 5e34116
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public static boolean fillsSheet(List<? extends Entity> entities, RecordSheetOpt
if (numTypes > 1) {
throw new IllegalArgumentException("Heterogeneous unit types are not supported");
}
if (entities.get(0) instanceof BattleArmor || entities.get(0) instanceof Protomech) {
if ((entities.get(0) instanceof BattleArmor) || (entities.get(0) instanceof Protomech)) {
return entities.size() > 4;
}
if (entities.get(0) instanceof Infantry) {
Expand Down

0 comments on commit 5e34116

Please sign in to comment.