aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
diff options
context:
space:
mode:
authorWalker Selby <git@walkerselby.com>2023-10-06 06:09:41 +0100
committerGitHub <noreply@github.com>2023-10-06 16:09:41 +1100
commitebdc4df69093d29c3334537f9267374773464a30 (patch)
tree015b8c637cd671fdca141223c67a873faddd6f22 /src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
parent778e868ae93651b7280289af14a812eec7f2ecb1 (diff)
downloadnotenoughupdates-ebdc4df69093d29c3334537f9267374773464a30.tar.gz
notenoughupdates-ebdc4df69093d29c3334537f9267374773464a30.tar.bz2
notenoughupdates-ebdc4df69093d29c3334537f9267374773464a30.zip
Cleanup: Refactor for naming conventions (#856)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java68
1 files changed, 34 insertions, 34 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
index ea3b55bb..2d64db59 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
@@ -36,40 +36,40 @@ import io.github.moulberry.notenoughupdates.miscgui.GuiEnchantColour;
import io.github.moulberry.notenoughupdates.miscgui.GuiInvButtonEditor;
import io.github.moulberry.notenoughupdates.miscgui.NEUOverlayPlacements;
import io.github.moulberry.notenoughupdates.options.customtypes.NEUDebugFlag;
-import io.github.moulberry.notenoughupdates.options.seperateSections.AHGraph;
-import io.github.moulberry.notenoughupdates.options.seperateSections.AHTweaks;
-import io.github.moulberry.notenoughupdates.options.seperateSections.AccessoryBag;
-import io.github.moulberry.notenoughupdates.options.seperateSections.ApiData;
-import io.github.moulberry.notenoughupdates.options.seperateSections.BazaarTweaks;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Calendar;
-import io.github.moulberry.notenoughupdates.options.seperateSections.CustomArmour;
-import io.github.moulberry.notenoughupdates.options.seperateSections.DungeonMapConfig;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Dungeons;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Enchanting;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Fishing;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Garden;
-import io.github.moulberry.notenoughupdates.options.seperateSections.ImprovedSBMenu;
-import io.github.moulberry.notenoughupdates.options.seperateSections.InventoryButtons;
-import io.github.moulberry.notenoughupdates.options.seperateSections.ItemOverlays;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Itemlist;
-import io.github.moulberry.notenoughupdates.options.seperateSections.LocationEdit;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Mining;
-import io.github.moulberry.notenoughupdates.options.seperateSections.MinionHelper;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Misc;
-import io.github.moulberry.notenoughupdates.options.seperateSections.MiscOverlays;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Museum;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Notifications;
-import io.github.moulberry.notenoughupdates.options.seperateSections.PetOverlay;
-import io.github.moulberry.notenoughupdates.options.seperateSections.ProfileViewer;
-import io.github.moulberry.notenoughupdates.options.seperateSections.SkillOverlays;
-import io.github.moulberry.notenoughupdates.options.seperateSections.SlayerOverlay;
-import io.github.moulberry.notenoughupdates.options.seperateSections.SlotLocking;
-import io.github.moulberry.notenoughupdates.options.seperateSections.StorageGUI;
-import io.github.moulberry.notenoughupdates.options.seperateSections.Toolbar;
-import io.github.moulberry.notenoughupdates.options.seperateSections.TooltipTweaks;
-import io.github.moulberry.notenoughupdates.options.seperateSections.TradeMenu;
-import io.github.moulberry.notenoughupdates.options.seperateSections.WardrobeKeybinds;
-import io.github.moulberry.notenoughupdates.options.seperateSections.WorldConfig;
+import io.github.moulberry.notenoughupdates.options.separatesections.AHGraph;
+import io.github.moulberry.notenoughupdates.options.separatesections.AHTweaks;
+import io.github.moulberry.notenoughupdates.options.separatesections.AccessoryBag;
+import io.github.moulberry.notenoughupdates.options.separatesections.ApiData;
+import io.github.moulberry.notenoughupdates.options.separatesections.BazaarTweaks;
+import io.github.moulberry.notenoughupdates.options.separatesections.Calendar;
+import io.github.moulberry.notenoughupdates.options.separatesections.CustomArmour;
+import io.github.moulberry.notenoughupdates.options.separatesections.DungeonMapConfig;
+import io.github.moulberry.notenoughupdates.options.separatesections.Dungeons;
+import io.github.moulberry.notenoughupdates.options.separatesections.Enchanting;
+import io.github.moulberry.notenoughupdates.options.separatesections.Fishing;
+import io.github.moulberry.notenoughupdates.options.separatesections.Garden;
+import io.github.moulberry.notenoughupdates.options.separatesections.ImprovedSBMenu;
+import io.github.moulberry.notenoughupdates.options.separatesections.InventoryButtons;
+import io.github.moulberry.notenoughupdates.options.separatesections.ItemOverlays;
+import io.github.moulberry.notenoughupdates.options.separatesections.Itemlist;
+import io.github.moulberry.notenoughupdates.options.separatesections.LocationEdit;
+import io.github.moulberry.notenoughupdates.options.separatesections.Mining;
+import io.github.moulberry.notenoughupdates.options.separatesections.MinionHelper;
+import io.github.moulberry.notenoughupdates.options.separatesections.Misc;
+import io.github.moulberry.notenoughupdates.options.separatesections.MiscOverlays;
+import io.github.moulberry.notenoughupdates.options.separatesections.Museum;
+import io.github.moulberry.notenoughupdates.options.separatesections.Notifications;
+import io.github.moulberry.notenoughupdates.options.separatesections.PetOverlay;
+import io.github.moulberry.notenoughupdates.options.separatesections.ProfileViewer;
+import io.github.moulberry.notenoughupdates.options.separatesections.SkillOverlays;
+import io.github.moulberry.notenoughupdates.options.separatesections.SlayerOverlay;
+import io.github.moulberry.notenoughupdates.options.separatesections.SlotLocking;
+import io.github.moulberry.notenoughupdates.options.separatesections.StorageGUI;
+import io.github.moulberry.notenoughupdates.options.separatesections.Toolbar;
+import io.github.moulberry.notenoughupdates.options.separatesections.TooltipTweaks;
+import io.github.moulberry.notenoughupdates.options.separatesections.TradeMenu;
+import io.github.moulberry.notenoughupdates.options.separatesections.WardrobeKeybinds;
+import io.github.moulberry.notenoughupdates.options.separatesections.WorldConfig;
import io.github.moulberry.notenoughupdates.overlays.MiningOverlay;
import io.github.moulberry.notenoughupdates.overlays.OverlayManager;
import io.github.moulberry.notenoughupdates.overlays.TextOverlay;