docs: remove useless TODOs

This commit is contained in:
daoge_cmd
2024-10-14 21:21:54 +08:00
parent 8d63c40e2f
commit 67fc2ba4dc
4 changed files with 1 additions and 6 deletions
@@ -18,7 +18,6 @@ public class TerraAllayPlugin extends Plugin {
INSTANCE = this; INSTANCE = this;
} }
// TODO: Adapt command manager
@Override @Override
public void onLoad() { public void onLoad() {
pluginLogger.info("Starting Terra..."); pluginLogger.info("Starting Terra...");
@@ -29,6 +28,7 @@ public class TerraAllayPlugin extends Plugin {
pluginLogger.info("Initializing allay platform..."); pluginLogger.info("Initializing allay platform...");
PLATFORM = new AllayPlatform(); PLATFORM = new AllayPlatform();
PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent());
// TODO: adapt command manager
pluginLogger.info("Registering generator..."); pluginLogger.info("Registering generator...");
Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator());
@@ -33,19 +33,16 @@ public final class AllayBlockState implements com.dfsek.terra.api.block.state.Bl
@Override @Override
public <T extends Comparable<T>> boolean has(Property<T> property) { public <T extends Comparable<T>> boolean has(Property<T> property) {
// TODO
return false; return false;
} }
@Override @Override
public <T extends Comparable<T>> T get(Property<T> property) { public <T extends Comparable<T>> T get(Property<T> property) {
// TODO
return null; return null;
} }
@Override @Override
public <T extends Comparable<T>> com.dfsek.terra.api.block.state.BlockState set(Property<T> property, T value) { public <T extends Comparable<T>> com.dfsek.terra.api.block.state.BlockState set(Property<T> property, T value) {
// TODO
return null; return null;
} }
@@ -60,7 +60,6 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces
@Override @Override
public BlockEntity getBlockEntity(int x, int y, int z) { public BlockEntity getBlockEntity(int x, int y, int z) {
// TODO
return null; return null;
} }
@@ -48,7 +48,6 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime
@Override @Override
public BlockEntity getBlockEntity(int x, int y, int z) { public BlockEntity getBlockEntity(int x, int y, int z) {
// TODO
return null; return null;
} }