From 25e8f5ec6a7846dbaeaa1ae66640d25039d05f63 Mon Sep 17 00:00:00 2001 From: coolGi2007 Date: Sat, 19 Feb 2022 08:30:06 +0000 Subject: [PATCH] Forgot to push this file --- .../com/seibel/lod/forge/wrappers/ForgeDependencySetup.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/forge/src/main/java/com/seibel/lod/forge/wrappers/ForgeDependencySetup.java b/forge/src/main/java/com/seibel/lod/forge/wrappers/ForgeDependencySetup.java index c9d28bd26..3646b238b 100644 --- a/forge/src/main/java/com/seibel/lod/forge/wrappers/ForgeDependencySetup.java +++ b/forge/src/main/java/com/seibel/lod/forge/wrappers/ForgeDependencySetup.java @@ -2,7 +2,6 @@ package com.seibel.lod.forge.wrappers; import com.seibel.lod.common.LodCommonMain; import com.seibel.lod.common.wrappers.config.LodConfigWrapperSingleton; -import com.seibel.lod.common.wrappers.config.NewLodConfigWrapperSingleton; import com.seibel.lod.core.util.SingletonHandler; import com.seibel.lod.core.wrapperInterfaces.config.ILodConfigWrapperSingleton; @@ -20,9 +19,6 @@ public class ForgeDependencySetup { public static void createInitialBindings() { - if (!LodCommonMain.IsNewConfig) - SingletonHandler.bind(ILodConfigWrapperSingleton.class, LodConfigWrapperSingleton.INSTANCE); - else - SingletonHandler.bind(ILodConfigWrapperSingleton.class, NewLodConfigWrapperSingleton.INSTANCE); + SingletonHandler.bind(ILodConfigWrapperSingleton.class, LodConfigWrapperSingleton.INSTANCE); } }