remove unused TODOs

This commit is contained in:
James Seibel
2026-02-03 07:45:37 -06:00
parent b8ebc54dee
commit 4d0472749d
4 changed files with 0 additions and 9 deletions
@@ -102,7 +102,6 @@ public class FabricServerProxy implements AbstractModInitializer.IEventProxy
// ServerWorldLoadEvent
//TODO: Check if both of these use the correct timed events. (i.e. is it 'ed' or 'ing' one?)
ServerLifecycleEvents.SERVER_STARTING.register((server) ->
{
if (this.isValidTime())
@@ -42,9 +42,6 @@ public class MixinSodiumRenderer
if (renderPass.equals(DefaultTerrainRenderPasses.SOLID))
{
//TODO: use matrices.modelView() and matrices.projection() instead of
// SodiumAccessor.mcModelViewMatrix,
// SodiumAccessor.mcProjectionMatrix,
ClientApi.INSTANCE.renderLods(accessor.levelWrapper,
accessor.mcModelViewMatrix,
accessor.mcProjectionMatrix,
@@ -89,9 +86,6 @@ public class MixinSodiumRenderer
if (pass.equals(BlockRenderPass.SOLID))
{
//TODO: use matrices.modelView() and matrices.projection() instead of
// SodiumAccessor.mcModelViewMatrix,
// SodiumAccessor.mcProjectionMatrix,
ClientApi.INSTANCE.renderLods(accessor.levelWrapper,
accessor.mcModelViewMatrix,
accessor.mcProjectionMatrix,
@@ -169,7 +169,6 @@ public class TestGenericWorldGenerator implements IDhApiWorldGenerator
block = borderBlock;
}
// TODO make mutable dataPoint object
// sky lighting can be ignored. DH will auto light the LODs after they've been submitted
// block lighting however will need to be generated here
dataPoints.add(DhApiTerrainDataPoint.create((byte)0, 0, 0, 0, maxHeight, block, biome));
@@ -8,7 +8,6 @@ import com.seibel.distanthorizons.core.logging.DhLoggerBuilder;
import net.minecraft.server.level.ServerLevel;
import com.seibel.distanthorizons.core.logging.DhLogger;
// TODO add to API example once Builderb0y has given the all-clear
public class TestWorldGenBindingEvent extends DhApiLevelLoadEvent
{
private static final DhLogger LOGGER = new DhLoggerBuilder().build();