diff --git a/api/src/main/java/com/seibel/distanthorizons/api/enums/worldGeneration/EDhApiWorldGenThreadMode.java b/api/src/main/java/com/seibel/distanthorizons/api/enums/worldGeneration/EDhApiWorldGenThreadMode.java
deleted file mode 100644
index ec99b5a5f..000000000
--- a/api/src/main/java/com/seibel/distanthorizons/api/enums/worldGeneration/EDhApiWorldGenThreadMode.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.seibel.distanthorizons.api.enums.worldGeneration;
-
-/**
- * MULTI_THREADED,
- * SINGLE_THREADED,
- * SERVER_THREAD,
- *
- * @author James Seibel
- * @version 7-14-2022
- */
-@Deprecated // not currently in use, if the config this enum represents is re-implemented, the deprecated flag can be removed
-public enum EDhApiWorldGenThreadMode
-{
- /**
- * This world generator can be run on an unlimited number
- * of concurrent threads.
- */
- MULTI_THREADED,
-
- /**
- * This world generator can only be run on one thread at
- * a time, however that thread can run concurrently
- * to Minecraft's server thread.
- */
- SINGLE_THREADED,
-
- /**
- * This world generator can only be run on Minecraft's
- * server thread.
- */
- SERVER_THREAD,
-}