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

View File

@@ -18,7 +18,6 @@ public class TerraAllayPlugin extends Plugin {
INSTANCE = this;
}
// TODO: Adapt command manager
@Override
public void onLoad() {
pluginLogger.info("Starting Terra...");
@@ -29,6 +28,7 @@ public class TerraAllayPlugin extends Plugin {
pluginLogger.info("Initializing allay platform...");
PLATFORM = new AllayPlatform();
PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent());
// TODO: adapt command manager
pluginLogger.info("Registering generator...");
Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator());

View File

@@ -33,19 +33,16 @@ public final class AllayBlockState implements com.dfsek.terra.api.block.state.Bl
@Override
public <T extends Comparable<T>> boolean has(Property<T> property) {
// TODO
return false;
}
@Override
public <T extends Comparable<T>> T get(Property<T> property) {
// TODO
return null;
}
@Override
public <T extends Comparable<T>> com.dfsek.terra.api.block.state.BlockState set(Property<T> property, T value) {
// TODO
return null;
}

View File

@@ -60,7 +60,6 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces
@Override
public BlockEntity getBlockEntity(int x, int y, int z) {
// TODO
return null;
}

View File

@@ -48,7 +48,6 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime
@Override
public BlockEntity getBlockEntity(int x, int y, int z) {
// TODO
return null;
}