diff --git a/src/main/java/lostcave/deathchests/DeathChests.java b/src/main/java/lostcave/deathchests/DeathChests.java index 1c08fe4..d5e6eb0 100644 --- a/src/main/java/lostcave/deathchests/DeathChests.java +++ b/src/main/java/lostcave/deathchests/DeathChests.java @@ -41,11 +41,6 @@ public class DeathChests { Config.loadConfig(); Debug.out("Loaded config."); - - if (Config.fixLog4J) { - // TODO: Mitigate the Log4J security vulnerability if it's in any way convenient - Debug.err("Log4J fix is currently not implemented!"); - } } @EventHandler diff --git a/src/main/java/lostcave/deathchests/util/Config.java b/src/main/java/lostcave/deathchests/util/Config.java index 3dfa3e2..464c6f5 100644 --- a/src/main/java/lostcave/deathchests/util/Config.java +++ b/src/main/java/lostcave/deathchests/util/Config.java @@ -12,8 +12,6 @@ public class Config { public static final String config_file_name = "deathchests.txt"; public static File configDir = null; - public static boolean debug = true; - public static boolean fixLog4J = true; public static int maxDistance = 50; public static boolean allowOtherPlayers = true; public static String notAllowedMessage = "ยง4Cannot get items from another player's death chest."; @@ -28,9 +26,6 @@ public class Config { configOut += "\n\n# Enable debug output?\n"; configOut += "debug="; configOut += debug ? "true" : "false"; - configOut += "\n\n# Enable Log4Shell counter measures? (this feature is currently not implemented)\n"; - configOut += "fixLog4J="; - configOut += fixLog4J ? "true" : "false"; configOut += "\n\n# The maximum search radius for finding a suitable location for placing the death chest\n"; configOut += "maxDistance="; configOut += Integer.toString(maxDistance); @@ -74,10 +69,6 @@ public class Config { debug = configData.get(i).substring(equalsSign + 1).equals("true") ? true : false; break; } - case ("fixLog4J"): { - fixLog4J = configData.get(i).substring(equalsSign + 1).equals("true") ? true : false; - break; - } case ("maxDistance"): { maxDistance = Integer.parseInt(configData.get(i).substring(equalsSign + 1)); break;