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;