diff --git a/src/main/java/com/seibel/lod/builders/lodTemplates/DynamicLodTemplate.java b/src/main/java/com/seibel/lod/builders/lodTemplates/DynamicLodTemplate.java index b94adfe3d..1fb5b3c38 100644 --- a/src/main/java/com/seibel/lod/builders/lodTemplates/DynamicLodTemplate.java +++ b/src/main/java/com/seibel/lod/builders/lodTemplates/DynamicLodTemplate.java @@ -17,7 +17,6 @@ */ package com.seibel.lod.builders.lodTemplates; -import com.seibel.lod.enums.LodDetail; import com.seibel.lod.objects.LodDataPoint; import com.seibel.lod.objects.LodDimension; @@ -46,7 +45,6 @@ public class DynamicLodTemplate extends AbstractLodTemplate @Override public int getBufferMemoryForSingleNode(int detailLevel) { - // TODO Auto-generated method stub return 0; } } diff --git a/src/main/java/com/seibel/lod/builders/lodTemplates/TriangularLodTemplate.java b/src/main/java/com/seibel/lod/builders/lodTemplates/TriangularLodTemplate.java index 18df8d803..06f7905f0 100644 --- a/src/main/java/com/seibel/lod/builders/lodTemplates/TriangularLodTemplate.java +++ b/src/main/java/com/seibel/lod/builders/lodTemplates/TriangularLodTemplate.java @@ -17,7 +17,6 @@ */ package com.seibel.lod.builders.lodTemplates; -import com.seibel.lod.enums.LodDetail; import com.seibel.lod.objects.LodDataPoint; import com.seibel.lod.objects.LodDimension; @@ -44,7 +43,6 @@ public class TriangularLodTemplate extends AbstractLodTemplate @Override public int getBufferMemoryForSingleNode(int detailLevel) { - // TODO Auto-generated method stub return 0; } } diff --git a/src/main/java/com/seibel/lod/builders/worldGeneration/LodNodeGenWorker.java b/src/main/java/com/seibel/lod/builders/worldGeneration/LodNodeGenWorker.java index 585146d97..a1bb814aa 100644 --- a/src/main/java/com/seibel/lod/builders/worldGeneration/LodNodeGenWorker.java +++ b/src/main/java/com/seibel/lod/builders/worldGeneration/LodNodeGenWorker.java @@ -293,8 +293,6 @@ public class LodNodeGenWorker implements IWorker { if (simulateHeight) { - // TODO use the biomes around each block to smooth out the transition - // these heights are of course aren't super accurate, // they are just to simulate height data where there isn't any switch(chunk.getBiomes().getNoiseBiome(x >> 2, seaLevel >> 2, z >> 2).getBiomeCategory()) diff --git a/src/main/java/com/seibel/lod/objects/LodDimension.java b/src/main/java/com/seibel/lod/objects/LodDimension.java index f54f9c4d9..9a85c39df 100644 --- a/src/main/java/com/seibel/lod/objects/LodDimension.java +++ b/src/main/java/com/seibel/lod/objects/LodDimension.java @@ -36,7 +36,6 @@ import net.minecraft.util.math.ChunkPos; import net.minecraft.world.DimensionType; import net.minecraft.world.server.ServerChunkProvider; import net.minecraft.world.server.ServerWorld; -import org.lwjgl.system.CallbackI; /** * This object holds all loaded LOD regions @@ -704,20 +703,6 @@ public class LodDimension } - /** - * TODO Double check that this method works as expected - *
- * Returns how many non-null LodChunks - * are stored in this LodDimension. - */ - public int getNumberOfLods() - { - /**TODO **/ - int numbLods = 0; - return numbLods; - } - - public int getWidth() { if (regions != null) diff --git a/src/main/java/com/seibel/lod/proxy/ClientProxy.java b/src/main/java/com/seibel/lod/proxy/ClientProxy.java index d44ab6a7f..7ebb2ccca 100644 --- a/src/main/java/com/seibel/lod/proxy/ClientProxy.java +++ b/src/main/java/com/seibel/lod/proxy/ClientProxy.java @@ -265,8 +265,6 @@ public class ClientProxy // do the dimensions need to change in size? if (lodBuilder.defaultDimensionWidthInRegions != newWidth || recalculateWidths) { - // TODO make this async - // update the dimensions to fit the new width lodWorld.resizeDimensionRegionWidth(newWidth); lodBuilder.defaultDimensionWidthInRegions = newWidth;