remove unused configpack methods

This commit is contained in:
dfsek 2021-12-03 09:38:11 -07:00
parent b925fe8ff5
commit f7ccb00bbe
2 changed files with 0 additions and 21 deletions

View File

@ -39,10 +39,6 @@ public interface ConfigPack extends LoaderRegistrar, LoaderHolder, RegistryHolde
boolean vanillaCaves();
boolean disableStructures();
boolean doBetaCarvers();
boolean vanillaFlora();
BiomeProvider getBiomeProvider();
@ -65,8 +61,6 @@ public interface ConfigPack extends LoaderRegistrar, LoaderHolder, RegistryHolde
String getVersion();
Map<String, String> getLocatable();
RegistryFactory getRegistryFactory();
ChunkGeneratorProvider getGeneratorProvider();

View File

@ -268,16 +268,6 @@ public class ConfigPackImpl implements ConfigPack {
return template.vanillaCaves();
}
@Override
public boolean disableStructures() {
return template.disableStructures();
}
@Override
public boolean doBetaCarvers() {
return template.doBetaCarvers();
}
@Override
public boolean vanillaFlora() {
return template.vanillaDecorations();
@ -341,11 +331,6 @@ public class ConfigPackImpl implements ConfigPack {
return template.getVersion();
}
@Override
public Map<String, String> getLocatable() {
return template.getLocatable();
}
@Override
public RegistryFactory getRegistryFactory() {
return registryFactory;