diff --git a/Plan/common/src/main/java/com/djrapitops/plan/settings/config/paths/PluginDataSettings.java b/Plan/common/src/main/java/com/djrapitops/plan/settings/config/paths/PluginDataSettings.java
deleted file mode 100644
index 507d2f17e..000000000
--- a/Plan/common/src/main/java/com/djrapitops/plan/settings/config/paths/PluginDataSettings.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * This file is part of Player Analytics (Plan).
- *
- * Plan is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License v3 as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Plan is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with Plan. If not, see .
- */
-package com.djrapitops.plan.settings.config.paths;
-
-import com.djrapitops.plan.settings.config.paths.key.Setting;
-import com.djrapitops.plan.settings.config.paths.key.StringListSetting;
-import com.djrapitops.plan.settings.config.paths.key.StringSetting;
-
-import java.util.List;
-
-/**
- * {@link Setting} values that are in "Plugins" section.
- *
- * @author Rsl1122
- */
-public class PluginDataSettings {
-
- public static final Setting PLUGIN_BUYCRAFT_SECRET = new StringSetting("Plugins.BuyCraft.Secret");
- public static final Setting> HIDE_FACTIONS = new StringListSetting("Plugins.Factions.HideFactions");
- public static final Setting> HIDE_TOWNS = new StringListSetting("Plugins.Towny.HideTowns");
-
- private PluginDataSettings() {
- /* static variable class */
- }
-}
\ No newline at end of file
diff --git a/Plan/common/src/test/java/com/djrapitops/plan/settings/ConfigSettingKeyTest.java b/Plan/common/src/test/java/com/djrapitops/plan/settings/ConfigSettingKeyTest.java
index ad44059a2..020a44763 100644
--- a/Plan/common/src/test/java/com/djrapitops/plan/settings/ConfigSettingKeyTest.java
+++ b/Plan/common/src/test/java/com/djrapitops/plan/settings/ConfigSettingKeyTest.java
@@ -84,7 +84,6 @@ public class ConfigSettingKeyTest {
DisplaySettings.class,
ExportSettings.class,
FormatSettings.class,
- PluginDataSettings.class,
PluginSettings.class,
TimeSettings.class,
WebserverSettings.class
@@ -108,8 +107,6 @@ public class ConfigSettingKeyTest {
}) {
settings.addAll(FieldFetcher.getPublicStaticFields(settingKeyClass, Setting.class));
}
- settings.add(PluginDataSettings.PLUGIN_BUYCRAFT_SECRET);
-
// Server settings contained in the key classes, remove
settings.remove(PluginSettings.SERVER_NAME);
settings.remove(PluginSettings.PROXY_COPY_CONFIG);