diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-09-16 03:23:56 +0200 |
---|---|---|
committer | boubou19 <miisterunknown@gmail.com> | 2024-09-17 22:55:46 +0200 |
commit | b9c00a4666b84f1cc3be06b677397c4de14cef0f (patch) | |
tree | 94ef34fb1657e188c6130459b3b123c38deda7be /src/main/java | |
parent | ab411da881e3307f45eeb0f4f944bbf9f691e1cc (diff) | |
download | GT5-Unofficial-b9c00a4666b84f1cc3be06b677397c4de14cef0f.tar.gz GT5-Unofficial-b9c00a4666b84f1cc3be06b677397c4de14cef0f.tar.bz2 GT5-Unofficial-b9c00a4666b84f1cc3be06b677397c4de14cef0f.zip |
delete GT++ ServerProxy.java since it does nothing
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gtPlusPlus/GTplusplus.java | 8 | ||||
-rw-r--r-- | src/main/java/gtPlusPlus/core/proxy/ServerProxy.java | 28 |
2 files changed, 1 insertions, 35 deletions
diff --git a/src/main/java/gtPlusPlus/GTplusplus.java b/src/main/java/gtPlusPlus/GTplusplus.java index eafc39af3e..7550d1724b 100644 --- a/src/main/java/gtPlusPlus/GTplusplus.java +++ b/src/main/java/gtPlusPlus/GTplusplus.java @@ -110,15 +110,12 @@ public class GTplusplus implements ActionListener { public static INIT_PHASE CURRENT_LOAD_PHASE = INIT_PHASE.SUPER; - // Mod Instance @Mod.Instance(Names.G_T_PLUS_PLUS) public static GTplusplus instance; - // GT++ Proxy Instances - @SidedProxy(clientSide = "gtPlusPlus.core.proxy.ClientProxy", serverSide = "gtPlusPlus.core.proxy.ServerProxy") + @SidedProxy(clientSide = "gtPlusPlus.core.proxy.ClientProxy", serverSide = "gtPlusPlus.core.common.CommonProxy") public static CommonProxy proxy; - // Loads Textures @SideOnly(value = Side.CLIENT) public static void loadTextures() { Logger.INFO("Loading some textures on the client."); @@ -141,7 +138,6 @@ public class GTplusplus implements ActionListener { INIT_PHASE.SUPER.setPhaseActive(true); } - // Pre-Init @Mod.EventHandler public void preInit(final FMLPreInitializationEvent event) { INIT_PHASE.PRE_INIT.setPhaseActive(true); @@ -168,7 +164,6 @@ public class GTplusplus implements ActionListener { CoreManager.preInit(); } - // Init @Mod.EventHandler public void init(final FMLInitializationEvent event) { INIT_PHASE.INIT.setPhaseActive(true); @@ -182,7 +177,6 @@ public class GTplusplus implements ActionListener { } } - // Post-Init @Mod.EventHandler public void postInit(final FMLPostInitializationEvent event) { INIT_PHASE.POST_INIT.setPhaseActive(true); diff --git a/src/main/java/gtPlusPlus/core/proxy/ServerProxy.java b/src/main/java/gtPlusPlus/core/proxy/ServerProxy.java deleted file mode 100644 index 73b027af10..0000000000 --- a/src/main/java/gtPlusPlus/core/proxy/ServerProxy.java +++ /dev/null @@ -1,28 +0,0 @@ -package gtPlusPlus.core.proxy; - -import cpw.mods.fml.common.event.FMLInitializationEvent; -import cpw.mods.fml.common.event.FMLPostInitializationEvent; -import cpw.mods.fml.common.event.FMLPreInitializationEvent; -import gtPlusPlus.core.common.CommonProxy; - -@SuppressWarnings("unused") -public class ServerProxy extends CommonProxy { - - @Override - public void preInit(final FMLPreInitializationEvent e) { - // TODO Auto-generated method stub - super.preInit(e); - } - - @Override - public void init(final FMLInitializationEvent e) { - // TODO Auto-generated method stub - super.init(e); - } - - @Override - public void postInit(final FMLPostInitializationEvent e) { - // TODO Auto-generated method stub - super.postInit(e); - } -} |