Forgot class paths, remove things lombok covers, and optimize imports

This commit is contained in:
ZeroEpoch1969
2018-07-31 00:01:29 -07:00
parent 1f9078b702
commit 2716e2500b
126 changed files with 285 additions and 630 deletions

View File

@ -1,8 +1,7 @@
package me.totalfreedom.totalfreedommod.config;
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
import java.util.List;
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
public enum ConfigEntry
@ -175,7 +174,7 @@ public enum ConfigEntry
@SuppressWarnings("unchecked")
public List<String> getStringList()
{
return (List<String>) getList();
return (List<String>)getList();
}
private MainConfig getConfig()