diff --git a/api/src/main/java/com/seibel/distanthorizons/api/enums/config/EDhApiDataCompressionMode.java b/api/src/main/java/com/seibel/distanthorizons/api/enums/config/EDhApiDataCompressionMode.java
index 9953ae594..e121b0eda 100644
--- a/api/src/main/java/com/seibel/distanthorizons/api/enums/config/EDhApiDataCompressionMode.java
+++ b/api/src/main/java/com/seibel/distanthorizons/api/enums/config/EDhApiDataCompressionMode.java
@@ -22,7 +22,8 @@ package com.seibel.distanthorizons.api.enums.config;
/**
* UNCOMPRESSED
* LZ4
- * XZ
+ * Z_STD
+ * LZMA2
*
* Note: speed and compression ratios are examples
* and should only be used for estimated comparisons.
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/sources/FullDataSourceV2.java b/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/sources/FullDataSourceV2.java
index 0fdee4d55..7838d941e 100644
--- a/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/sources/FullDataSourceV2.java
+++ b/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/sources/FullDataSourceV2.java
@@ -116,9 +116,7 @@ public class FullDataSourceV2
/**
* stored x/z, y
- * The y data should be sorted from top to bottom
- * TODO that ordering feels weird, it'd be nice to reverse that order, unfortunately
- * there's something in the render data logic that expects this order so we can't change it right now
+ * The y data should be sorted from top to bottom
*/
public final LongArrayList[] dataPoints;
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/sql/repo/AbstractDhRepo.java b/core/src/main/java/com/seibel/distanthorizons/core/sql/repo/AbstractDhRepo.java
index 9e68e8c02..76bcfb536 100644
--- a/core/src/main/java/com/seibel/distanthorizons/core/sql/repo/AbstractDhRepo.java
+++ b/core/src/main/java/com/seibel/distanthorizons/core/sql/repo/AbstractDhRepo.java
@@ -716,10 +716,7 @@ public abstract class AbstractDhRepo> implemen
- /**
- * should NOT start with WHERE
- * Example: TODO
- */
+ /** should not start with WHERE */
protected abstract String CreateParameterizedWhereString();
protected void setPreparedStatementWhereClause(PreparedStatement statement, TKey key) throws SQLException { this.setPreparedStatementWhereClause(statement, 1, key); }