diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-09-07 05:40:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-07 03:40:03 +0000 |
commit | 82604eadb847335e4b4ddf2e90a28b325786837b (patch) | |
tree | b5c34fa3ab38181fc47ec20c8537a5db34e285e1 /src/main/java/gregtech | |
parent | ba7a419aacf0b0eb33afbde5663640a0908b77ce (diff) | |
download | GT5-Unofficial-82604eadb847335e4b4ddf2e90a28b325786837b.tar.gz GT5-Unofficial-82604eadb847335e4b4ddf2e90a28b325786837b.tar.bz2 GT5-Unofficial-82604eadb847335e4b4ddf2e90a28b325786837b.zip |
Remove a bunch more reflection (#3074)
Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gregtech')
4 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/GTMod.java b/src/main/java/gregtech/GTMod.java index 87b5b154d9..4b3bae4056 100644 --- a/src/main/java/gregtech/GTMod.java +++ b/src/main/java/gregtech/GTMod.java @@ -238,7 +238,7 @@ public class GTMod implements IGTMod { clientSide = "gregtech.common.GTClient", serverSide = "gregtech.common.GTServer") public static GTProxy gregtechproxy; - public static final boolean DEBUG = Boolean.getBoolean("gt.debug");; + public static final boolean DEBUG = Boolean.getBoolean("gt.debug"); public static int MAX_IC2 = 2147483647; public static GTAchievements achievements; diff --git a/src/main/java/gregtech/api/metatileentity/implementations/MTEWirelessEnergy.java b/src/main/java/gregtech/api/metatileentity/implementations/MTEWirelessEnergy.java index e195b4ab08..517fa18636 100644 --- a/src/main/java/gregtech/api/metatileentity/implementations/MTEWirelessEnergy.java +++ b/src/main/java/gregtech/api/metatileentity/implementations/MTEWirelessEnergy.java @@ -134,7 +134,7 @@ public class MTEWirelessEnergy extends MTEHatchEnergy implements IWirelessEnergy // UUID of the owner. owner_uuid = aBaseMetaTileEntity.getOwnerUuid(); - SpaceProjectManager.checkOrCreateTeam(owner_uuid);; + SpaceProjectManager.checkOrCreateTeam(owner_uuid); tryFetchingEnergy(); } diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/purification/MTEPurificationPlant.java b/src/main/java/gregtech/common/tileentities/machines/multi/purification/MTEPurificationPlant.java index 6933a18dc2..9c0b530164 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/purification/MTEPurificationPlant.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/purification/MTEPurificationPlant.java @@ -680,7 +680,7 @@ public class MTEPurificationPlant extends MTEExtendedPowerMultiBlockBase<MTEPuri .widget( unit.metaTileEntity() .makeSyncerWidgets()) - .widget(new FakeSyncWidget.BooleanSyncer(unit::isActive, unit::setActive));; + .widget(new FakeSyncWidget.BooleanSyncer(unit::isActive, unit::setActive)); return row; } diff --git a/src/main/java/gregtech/loaders/preload/GTPreLoad.java b/src/main/java/gregtech/loaders/preload/GTPreLoad.java index efeba9fe89..34fcfe86d3 100644 --- a/src/main/java/gregtech/loaders/preload/GTPreLoad.java +++ b/src/main/java/gregtech/loaders/preload/GTPreLoad.java @@ -533,7 +533,7 @@ public class GTPreLoad { // ore_drop_behavior try { GTLog.out.println("Trying to set it to: " + ConfigOreDropBehavior.setting); - GTMod.gregtechproxy.oreDropSystem = GTProxy.OreDropSystem.valueOf(ConfigOreDropBehavior.setting);; + GTMod.gregtechproxy.oreDropSystem = GTProxy.OreDropSystem.valueOf(ConfigOreDropBehavior.setting); } catch (IllegalArgumentException e) { GTLog.err.println(e); GTMod.gregtechproxy.oreDropSystem = GTProxy.OreDropSystem.FortuneItem; |