diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index 3b285f5e..1027b749 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -11,7 +11,7 @@ import com.google.gson.GsonBuilder; import me.konloch.kontainer.io.DiskReader; import org.apache.commons.io.FileUtils; import org.objectweb.asm.tree.ClassNode; -import the.bytecode.club.bootloader.Boot; +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.gui.components.*; diff --git a/src/main/java/the/bytecode/club/bootloader/AbstractLoaderFactory.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/AbstractLoaderFactory.java similarity index 95% rename from src/main/java/the/bytecode/club/bootloader/AbstractLoaderFactory.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/AbstractLoaderFactory.java index 3d6a8488..7604b958 100644 --- a/src/main/java/the/bytecode/club/bootloader/AbstractLoaderFactory.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/AbstractLoaderFactory.java @@ -1,8 +1,8 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; import java.util.HashMap; import java.util.Map; -import the.bytecode.club.bootloader.resource.ExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/Boot.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/Boot.java similarity index 99% rename from src/main/java/the/bytecode/club/bootloader/Boot.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/Boot.java index c2671871..5ccc5954 100644 --- a/src/main/java/the/bytecode/club/bootloader/Boot.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/Boot.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; import java.io.File; import java.io.FileOutputStream; @@ -11,12 +11,11 @@ import javax.swing.JOptionPane; import javax.swing.SwingUtilities; import me.konloch.kontainer.io.HTTPRequest; import org.apache.commons.io.FileUtils; -import the.bytecode.club.bootloader.resource.EmptyExternalResource; -import the.bytecode.club.bootloader.resource.ExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.EmptyExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.BytecodeViewer; import the.bytecode.club.bytecodeviewer.Configuration; import the.bytecode.club.bytecodeviewer.Constants; -import the.bytecode.club.bytecodeviewer.api.ExceptionUI; import the.bytecode.club.bytecodeviewer.util.MiscUtils; import the.bytecode.club.bytecodeviewer.util.ZipUtils; diff --git a/src/main/java/the/bytecode/club/bootloader/ClassPathLoader.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/ClassPathLoader.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/ClassPathLoader.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/ClassPathLoader.java index 1e0606e1..3bcc3084 100644 --- a/src/main/java/the/bytecode/club/bootloader/ClassPathLoader.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/ClassPathLoader.java @@ -1,10 +1,10 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.net.URL; import java.net.URLClassLoader; -import the.bytecode.club.bootloader.resource.ExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/ILoader.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/ILoader.java similarity index 92% rename from src/main/java/the/bytecode/club/bootloader/ILoader.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/ILoader.java index a75ea98a..c567ac82 100644 --- a/src/main/java/the/bytecode/club/bootloader/ILoader.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/ILoader.java @@ -1,6 +1,6 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; -import the.bytecode.club.bootloader.resource.ExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/InitialBootScreen.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/InitialBootScreen.java similarity index 98% rename from src/main/java/the/bytecode/club/bootloader/InitialBootScreen.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/InitialBootScreen.java index 125c9f02..0d4c91b5 100644 --- a/src/main/java/the/bytecode/club/bootloader/InitialBootScreen.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/InitialBootScreen.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; import java.awt.Dimension; import java.awt.GridBagConstraints; diff --git a/src/main/java/the/bytecode/club/bootloader/LibraryClassLoader.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/LibraryClassLoader.java similarity index 95% rename from src/main/java/the/bytecode/club/bootloader/LibraryClassLoader.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/LibraryClassLoader.java index 199b8068..e729cd75 100644 --- a/src/main/java/the/bytecode/club/bootloader/LibraryClassLoader.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/LibraryClassLoader.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; import java.io.IOException; import java.lang.reflect.Modifier; @@ -9,9 +9,9 @@ import java.util.Set; import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.tree.ClassNode; -import the.bytecode.club.bootloader.resource.ExternalResource; -import the.bytecode.club.bootloader.resource.JarContents; -import the.bytecode.club.bootloader.util.ClassTree; +import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.JarContents; +import the.bytecode.club.bytecodeviewer.bootloader.util.ClassTree; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/LoaderFactory.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/LoaderFactory.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/LoaderFactory.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/LoaderFactory.java index 32bece81..e64cb6e6 100644 --- a/src/main/java/the/bytecode/club/bootloader/LoaderFactory.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/LoaderFactory.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader; +package the.bytecode.club.bytecodeviewer.bootloader; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/resource/DataContainer.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/DataContainer.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/resource/DataContainer.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/DataContainer.java index b3990445..0919a631 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/DataContainer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/DataContainer.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.util.ArrayList; import java.util.Collection; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/EmptyExternalResource.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/EmptyExternalResource.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/resource/EmptyExternalResource.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/EmptyExternalResource.java index 30102bc5..99198cff 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/EmptyExternalResource.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/EmptyExternalResource.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.io.IOException; import java.net.URL; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/ExternalLibrary.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/ExternalLibrary.java similarity index 98% rename from src/main/java/the/bytecode/club/bootloader/resource/ExternalLibrary.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/ExternalLibrary.java index b3062407..ee1ad7e0 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/ExternalLibrary.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/ExternalLibrary.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.io.ByteArrayOutputStream; import java.io.IOException; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/ExternalResource.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/ExternalResource.java similarity index 97% rename from src/main/java/the/bytecode/club/bootloader/resource/ExternalResource.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/ExternalResource.java index efdbee1b..a78428bb 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/ExternalResource.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/ExternalResource.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.io.IOException; import java.net.URL; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/JarContents.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarContents.java similarity index 98% rename from src/main/java/the/bytecode/club/bootloader/resource/JarContents.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarContents.java index 2e6afcaf..f04282e5 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/JarContents.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarContents.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.util.ArrayList; import java.util.Collection; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/JarInfo.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarInfo.java similarity index 98% rename from src/main/java/the/bytecode/club/bootloader/resource/JarInfo.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarInfo.java index f89d42e6..64dc52f0 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/JarInfo.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarInfo.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.io.File; import java.net.JarURLConnection; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/JarResource.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarResource.java similarity index 97% rename from src/main/java/the/bytecode/club/bootloader/resource/JarResource.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarResource.java index 18519dd8..16a92ab7 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/JarResource.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarResource.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.util.Arrays; diff --git a/src/main/java/the/bytecode/club/bootloader/resource/JarType.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarType.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/resource/JarType.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarType.java index 350ede3d..bd8c384e 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/JarType.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/JarType.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/resource/LocateableJarContents.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/LocateableJarContents.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/resource/LocateableJarContents.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/LocateableJarContents.java index b7cc5da5..4887d3a1 100644 --- a/src/main/java/the/bytecode/club/bootloader/resource/LocateableJarContents.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/resource/LocateableJarContents.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.resource; +package the.bytecode.club.bytecodeviewer.bootloader.resource; import java.net.URL; import org.objectweb.asm.tree.ClassNode; diff --git a/src/main/java/the/bytecode/club/bootloader/util/Base64.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/Base64.java similarity index 99% rename from src/main/java/the/bytecode/club/bootloader/util/Base64.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/Base64.java index f01d1878..b5314255 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/Base64.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/Base64.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; import java.io.FilterOutputStream; import java.io.IOException; diff --git a/src/main/java/the/bytecode/club/bootloader/util/ClassHelper.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ClassHelper.java similarity index 97% rename from src/main/java/the/bytecode/club/bootloader/util/ClassHelper.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ClassHelper.java index 5b271e58..943edcd0 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/ClassHelper.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ClassHelper.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; import java.util.Collection; import java.util.HashMap; diff --git a/src/main/java/the/bytecode/club/bootloader/util/ClassTree.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ClassTree.java similarity index 97% rename from src/main/java/the/bytecode/club/bootloader/util/ClassTree.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ClassTree.java index 22b79a0a..9d6dc8ab 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/ClassTree.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ClassTree.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; import java.util.Collection; import java.util.Collections; @@ -9,8 +9,8 @@ import java.util.Set; import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.MethodNode; -import static the.bytecode.club.bootloader.util.ClassHelper.convertToMap; -import static the.bytecode.club.bootloader.util.ClassHelper.copyOf; +import static the.bytecode.club.bytecodeviewer.bootloader.util.ClassHelper.convertToMap; +import static the.bytecode.club.bytecodeviewer.bootloader.util.ClassHelper.copyOf; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/util/NullCreator.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/NullCreator.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/util/NullCreator.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/NullCreator.java index a657311b..06d8cc84 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/NullCreator.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/NullCreator.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bootloader/util/NullPermeableHashMap.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/NullPermeableHashMap.java similarity index 97% rename from src/main/java/the/bytecode/club/bootloader/util/NullPermeableHashMap.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/NullPermeableHashMap.java index 968cbd89..4e837b21 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/NullPermeableHashMap.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/NullPermeableHashMap.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; import java.util.HashMap; diff --git a/src/main/java/the/bytecode/club/bootloader/util/SetCreator.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/SetCreator.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/util/SetCreator.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/SetCreator.java index 6dbacbd3..29b4ec3e 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/SetCreator.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/SetCreator.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; import java.util.HashSet; import java.util.Set; diff --git a/src/main/java/the/bytecode/club/bootloader/util/ValueCreator.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ValueCreator.java similarity index 96% rename from src/main/java/the/bytecode/club/bootloader/util/ValueCreator.java rename to src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ValueCreator.java index 97501bad..29959ce8 100644 --- a/src/main/java/the/bytecode/club/bootloader/util/ValueCreator.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/util/ValueCreator.java @@ -1,4 +1,4 @@ -package the.bytecode.club.bootloader.util; +package the.bytecode.club.bytecodeviewer.bootloader.util; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/AboutWindow.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/AboutWindow.java index 093ccc59..f75c2a02 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/AboutWindow.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/AboutWindow.java @@ -5,7 +5,7 @@ import java.io.IOException; import javax.swing.JFrame; import javax.swing.JScrollPane; -import the.bytecode.club.bootloader.InitialBootScreen; +import the.bytecode.club.bytecodeviewer.bootloader.InitialBootScreen; import the.bytecode.club.bytecodeviewer.resources.IconResources; import static the.bytecode.club.bytecodeviewer.Configuration.*; diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/HTMLPane.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/HTMLPane.java index e109fdfd..c84552a1 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/HTMLPane.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/HTMLPane.java @@ -1,6 +1,6 @@ package the.bytecode.club.bytecodeviewer.gui.components; -import the.bytecode.club.bootloader.InitialBootScreen; +import the.bytecode.club.bytecodeviewer.bootloader.InitialBootScreen; import the.bytecode.club.bytecodeviewer.Configuration; import javax.swing.*; diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/util/BootCheck.java b/src/main/java/the/bytecode/club/bytecodeviewer/util/BootCheck.java index b6bfe169..3a2381cf 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/util/BootCheck.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/util/BootCheck.java @@ -1,9 +1,9 @@ package the.bytecode.club.bytecodeviewer.util; -import the.bytecode.club.bootloader.Boot; -import the.bytecode.club.bootloader.ILoader; -import the.bytecode.club.bootloader.resource.EmptyExternalResource; -import the.bytecode.club.bootloader.resource.ExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.Boot; +import the.bytecode.club.bytecodeviewer.bootloader.ILoader; +import the.bytecode.club.bytecodeviewer.bootloader.resource.EmptyExternalResource; +import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.BytecodeViewer; import the.bytecode.club.bytecodeviewer.CommandLineInput; diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java b/src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java index 41c7ff33..2afc704d 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/util/InstallFatJar.java @@ -1,6 +1,6 @@ package the.bytecode.club.bytecodeviewer.util; -import the.bytecode.club.bootloader.Boot; +import the.bytecode.club.bytecodeviewer.bootloader.Boot; import static the.bytecode.club.bytecodeviewer.Constants.OFFLINE_MODE;