From 0c629833ddd5cb626d125cd5fe29c526605f3afa Mon Sep 17 00:00:00 2001 From: Konloch Date: Wed, 21 Jul 2021 15:28:48 -0700 Subject: [PATCH] Code Cleanup --- .../java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java | 1 + .../club/bytecodeviewer/{util => bootloader}/InstallFatJar.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename src/main/java/the/bytecode/club/bytecodeviewer/{util => bootloader}/InstallFatJar.java (97%) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index 789aba2e..ebf64737 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -16,6 +16,7 @@ import me.konloch.kontainer.io.DiskReader; import the.bytecode.club.bytecodeviewer.bootloader.Boot; import the.bytecode.club.bytecodeviewer.api.BCV; import the.bytecode.club.bytecodeviewer.api.ExceptionUI; +import the.bytecode.club.bytecodeviewer.bootloader.InstallFatJar; import the.bytecode.club.bytecodeviewer.bootloader.UpdateCheck; import the.bytecode.club.bytecodeviewer.gui.MainViewerGUI; import the.bytecode.club.bytecodeviewer.gui.components.*; diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/InstallFatJar.java similarity index 97% rename from src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/InstallFatJar.java index cd9c7ae3..15b01981 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/InstallFatJar.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bytecodeviewer.util; +package the.bytecode.club.bytecodeviewer.bootloader; import the.bytecode.club.bytecodeviewer.bootloader.Boot;