clean up PluginConfig

This commit is contained in:
dfsek
2022-08-21 01:06:24 -07:00
parent ec8564df2f
commit fcffefe91d
2 changed files with 0 additions and 27 deletions

View File

@@ -15,19 +15,11 @@ public interface PluginConfig {
boolean dumpDefaultConfig();
boolean isDebugCommands();
boolean isDebugProfiler();
boolean isDebugScript();
int getBiomeSearchResolution();
int getStructureCache();
int getSamplerCache();
int getMaxRecursion();
int getProviderCache();
}

View File

@@ -98,11 +98,6 @@ public class PluginConfigImpl implements ConfigTemplate, PluginConfig {
return dumpDefaultData;
}
@Override
public boolean isDebugCommands() {
return debugCommands;
}
@Override
public boolean isDebugProfiler() {
return debugProfiler;
@@ -113,16 +108,6 @@ public class PluginConfigImpl implements ConfigTemplate, PluginConfig {
return debugScript;
}
@Override
public int getBiomeSearchResolution() {
return biomeSearch;
}
@Override
public int getStructureCache() {
return structureCache;
}
@Override
public int getSamplerCache() {
return samplerCache;
@@ -133,8 +118,4 @@ public class PluginConfigImpl implements ConfigTemplate, PluginConfig {
return maxRecursion;
}
@Override
public int getProviderCache() {
return providerCache;
}
}