refactor: remove unnecessary semicolons

This commit is contained in:
Breno A. 2024-06-09 08:56:58 -03:00
parent c3eafba072
commit 029ef823e1
4 changed files with 3 additions and 6 deletions

View File

@ -837,7 +837,6 @@ public final class ResourceLoader {
try {
JsonUtils.loadToList(getResourcePath("Server/SubfieldMapping.json"), SubfieldMapping.class)
.forEach(entry -> subfieldMap.put(entry.getEntityId(), entry));
;
} catch (IOException | NullPointerException ignored) {
}
Grasscutter.getLogger().debug("Loaded {} subfield mappings.", subfieldMap.size());
@ -851,7 +850,6 @@ public final class ResourceLoader {
JsonUtils.loadToList(
getResourcePath("Server/DropSubfieldMapping.json"), DropSubfieldMapping.class)
.forEach(entry -> dropSubfieldMap.put(entry.getDropId(), entry));
;
} catch (IOException | NullPointerException ignored) {
}
Grasscutter.getLogger().debug("Loaded {} drop subfield mappings.", dropSubfieldMap.size());
@ -866,7 +864,6 @@ public final class ResourceLoader {
getResourcePath("Server/DropTableExcelConfigData.json"),
DropTableExcelConfigData.class)
.forEach(entry -> dropTableExcelConfigDataMap.put(entry.getId(), entry));
;
} catch (IOException | NullPointerException ignored) {
}
Grasscutter.getLogger()

View File

@ -13,7 +13,7 @@ public class AbilityMixinData implements Serializable {
AttachToGadgetStateMixin,
AttachToStateIDMixin,
ShieldBarMixin,
TileAttackManagerMixin;
TileAttackManagerMixin
}
@SerializedName("$type")

View File

@ -264,7 +264,7 @@ public class AbilityModifier implements Serializable {
TurnDirectionToPos,
UpdateReactionDamage,
UseSkillEliteSet,
WidgetSkillStart;
WidgetSkillStart
}
@SerializedName("$type")

View File

@ -10,7 +10,7 @@ public class TalentData implements Serializable {
ModifySkillCD,
UnlockTalentParam,
AddTalentExtraLevel,
ModifyAbility;
ModifyAbility
}
@SerializedName("$type")