diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-04 08:05:05 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-04 08:05:05 +0200 |
commit | 47887640d0e217a9d3a568f4b960a10dd5f00ce0 (patch) | |
tree | 64f9296b8137268e6d8aed7a1fb147d0c7ace4da /src/main/java/at/hannibal2/skyhanni/config | |
parent | 8bd79d3e44dcaf156e4e48c2ecedadcd22a5e172 (diff) | |
download | skyhanni-47887640d0e217a9d3a568f4b960a10dd5f00ce0.tar.gz skyhanni-47887640d0e217a9d3a568f4b960a10dd5f00ce0.tar.bz2 skyhanni-47887640d0e217a9d3a568f4b960a10dd5f00ce0.zip |
Code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Diana.java | 5 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/GUI.java | 14 |
2 files changed, 4 insertions, 15 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java b/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java index 8df41070c..37032d25b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java @@ -34,10 +34,7 @@ public class Diana { public boolean burrowNearestWarp = false; @Expose - @ConfigOption( - name = "Warp Key", - desc = "Press this key to warp to nearest burrow waypoint." - ) + @ConfigOption(name = "Warp Key", desc = "Press this key to warp to nearest burrow waypoint.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) public int keyBindWarp = Keyboard.KEY_NONE; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java b/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java index eba1feea8..957f12f8f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java @@ -9,20 +9,12 @@ import org.lwjgl.input.Keyboard; public class GUI { - @ConfigOption( - name = "Edit GUI Locations", - desc = "Change the position of SkyHanni's overlays" - ) - @ConfigEditorButton( - buttonText = "Edit" - ) + @ConfigOption(name = "Edit GUI Locations", desc = "Change the position of SkyHanni's overlays") + @ConfigEditorButton(buttonText = "Edit") public Runnable positions = GuiEditManager::openGuiEditor; @Expose - @ConfigOption( - name = "Open Hotkey", - desc = "Press this key to open the GUI Editor." - ) + @ConfigOption(name = "Open Hotkey", desc = "Press this key to open the GUI Editor.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) public int keyBindOpen = Keyboard.KEY_NONE; } |