Skip to content

Commit b446046

Browse files
committed
Rename main package (#34)
1 parent 66d6e1c commit b446046

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+181
-193
lines changed

pom.xml

+1-6
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<configuration>
4646
<transformers>
4747
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
48-
<mainClass>the.bytecode.club.jda.JDA</mainClass>
48+
<mainClass>club.bytecode.the.jda.JDA</mainClass>
4949
</transformer>
5050
</transformers>
5151
</configuration>
@@ -126,11 +126,6 @@
126126
<artifactId>commons-lang3</artifactId>
127127
<version>3.4</version>
128128
</dependency>
129-
<dependency>
130-
<groupId>com.fifesoft</groupId>
131-
<artifactId>rsyntaxtextarea</artifactId>
132-
<version>2.5.8</version>
133-
</dependency>
134129
<dependency>
135130
<groupId>org.zeroturnaround</groupId>
136131
<artifactId>zt-zip</artifactId>

src/main/java/the/bytecode/club/jda/Boot.java renamed to src/main/java/club/bytecode/the/jda/Boot.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

3-
import the.bytecode.club.jda.api.ExceptionUI;
3+
import club.bytecode.the.jda.api.ExceptionUI;
44

55
import javax.swing.*;
66

src/main/java/the/bytecode/club/jda/FileChangeNotifier.java renamed to src/main/java/club/bytecode/the/jda/FileChangeNotifier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

33
import org.objectweb.asm.tree.ClassNode;
44

src/main/java/the/bytecode/club/jda/FileContainer.java renamed to src/main/java/club/bytecode/the/jda/FileContainer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

33
import org.objectweb.asm.ClassReader;
44
import org.objectweb.asm.tree.ClassNode;

src/main/java/the/bytecode/club/jda/FileDrop.java renamed to src/main/java/club/bytecode/the/jda/FileDrop.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

3-
import the.bytecode.club.jda.api.ExceptionUI;
3+
import club.bytecode.the.jda.api.ExceptionUI;
44

55
import java.awt.datatransfer.DataFlavor;
66
import java.io.*;

src/main/java/the/bytecode/club/jda/InitialBootScreen.java renamed to src/main/java/club/bytecode/the/jda/InitialBootScreen.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

33
import org.apache.commons.io.IOUtils;
44

@@ -53,7 +53,7 @@ else if (i >= 440)
5353
JEditorPane editorPane = new JEditorPane();
5454
editorPane.setEditorKit(new HTMLEditorKit());
5555
editorPane.setEditable(false);
56-
editorPane.setText(IOUtils.toString(Resources.class.getResourceAsStream("/the/bytecode/club/jda/html/intro.html"), "UTF-8"));
56+
editorPane.setText(IOUtils.toString(Resources.class.getResourceAsStream("/club/bytecode/the/jda/html/intro.html"), "UTF-8"));
5757

5858
scrollPane.setViewportView(editorPane);
5959

src/main/java/the/bytecode/club/jda/JDA.java renamed to src/main/java/club/bytecode/the/jda/JDA.java

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

3+
import club.bytecode.the.jda.gui.MainViewerGUI;
4+
import club.bytecode.the.jda.gui.fileviewer.BytecodeTokenizer;
35
import org.apache.commons.io.FileUtils;
46
import org.fife.ui.rsyntaxtextarea.AbstractTokenMakerFactory;
57
import org.fife.ui.rsyntaxtextarea.TokenMakerFactory;
6-
import org.fife.ui.rsyntaxtextarea.folding.CurlyFoldParser;
78
import org.fife.ui.rsyntaxtextarea.folding.FoldParserManager;
89
import org.objectweb.asm.ClassReader;
910
import org.objectweb.asm.ClassWriter;
1011
import org.objectweb.asm.tree.ClassNode;
11-
import the.bytecode.club.jda.api.ExceptionUI;
12-
import the.bytecode.club.jda.api.Plugin;
13-
import the.bytecode.club.jda.api.PluginLoader;
14-
import the.bytecode.club.jda.gui.MainViewerGUI;
15-
import the.bytecode.club.jda.gui.fileviewer.BytecodeFoldParser;
16-
import the.bytecode.club.jda.gui.fileviewer.BytecodeTokenizer;
17-
import the.bytecode.club.jda.gui.navigation.FileNavigationPane;
18-
import the.bytecode.club.jda.settings.Settings;
12+
import club.bytecode.the.jda.api.ExceptionUI;
13+
import club.bytecode.the.jda.api.Plugin;
14+
import club.bytecode.the.jda.api.PluginLoader;
15+
import club.bytecode.the.jda.gui.fileviewer.BytecodeFoldParser;
16+
import club.bytecode.the.jda.gui.navigation.FileNavigationPane;
17+
import club.bytecode.the.jda.settings.Settings;
1918

2019
import javax.swing.*;
2120
import javax.swing.filechooser.FileFilter;

src/main/java/the/bytecode/club/jda/JarUtils.java renamed to src/main/java/club/bytecode/the/jda/JarUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

3+
import club.bytecode.the.jda.api.ExceptionUI;
34
import org.objectweb.asm.ClassReader;
45
import org.objectweb.asm.ClassWriter;
56
import org.objectweb.asm.tree.ClassNode;
6-
import the.bytecode.club.jda.api.ExceptionUI;
77

88
import java.io.*;
99
import java.util.ArrayList;

src/main/java/the/bytecode/club/jda/MiscUtils.java renamed to src/main/java/club/bytecode/the/jda/MiscUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

33
import java.io.BufferedReader;
44
import java.io.File;

src/main/java/the/bytecode/club/jda/Resources.java renamed to src/main/java/club/bytecode/the/jda/Resources.java

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

33
import org.imgscalr.Scalr;
44

@@ -15,34 +15,34 @@
1515
*/
1616

1717
public class Resources {
18-
public static ImageIcon nextIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/nextIcon.png"));
19-
public static ImageIcon prevIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/prevIcon.png"));
20-
public static ImageIcon busyIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/1.gif"));
21-
public static ImageIcon busyB64Icon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/busyIcon2.gif"));
22-
public static ImageIcon batIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/bat.png"));
23-
public static ImageIcon shIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/sh.png"));
24-
public static ImageIcon csharpIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/c#.png"));
25-
public static ImageIcon cplusplusIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/c++.png"));
26-
public static ImageIcon configIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/config.png"));
27-
public static ImageIcon jarIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/jar.png"));
28-
public static ImageIcon zipIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/zip.png"));
29-
public static ImageIcon packagesIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/package.png"));
30-
public static ImageIcon folderIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/folder.png"));
31-
public static ImageIcon fileIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/file.png"));
32-
public static ImageIcon textIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/text.png"));
33-
public static ImageIcon classIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/class.png"));
34-
public static ImageIcon imageIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/image.png"));
35-
public static ImageIcon decodedIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/decoded.png"));
36-
public static ImageIcon javaIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/java.png"));
37-
38-
public static ImageIcon fileNavigatorIcon = new ImageIcon(Resources.class.getClass().getResource("/the/bytecode/club/jda/images/icon.png"));
18+
public static ImageIcon nextIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/nextIcon.png"));
19+
public static ImageIcon prevIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/prevIcon.png"));
20+
public static ImageIcon busyIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/1.gif"));
21+
public static ImageIcon busyB64Icon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/busyIcon2.gif"));
22+
public static ImageIcon batIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/bat.png"));
23+
public static ImageIcon shIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/sh.png"));
24+
public static ImageIcon csharpIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/c#.png"));
25+
public static ImageIcon cplusplusIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/c++.png"));
26+
public static ImageIcon configIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/config.png"));
27+
public static ImageIcon jarIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/jar.png"));
28+
public static ImageIcon zipIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/zip.png"));
29+
public static ImageIcon packagesIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/package.png"));
30+
public static ImageIcon folderIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/folder.png"));
31+
public static ImageIcon fileIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/file.png"));
32+
public static ImageIcon textIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/text.png"));
33+
public static ImageIcon classIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/class.png"));
34+
public static ImageIcon imageIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/image.png"));
35+
public static ImageIcon decodedIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/decoded.png"));
36+
public static ImageIcon javaIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/java.png"));
37+
38+
public static ImageIcon fileNavigatorIcon = new ImageIcon(Resources.class.getClass().getResource("/club/bytecode/the/jda/images/icon.png"));
3939

4040
public static ArrayList<BufferedImage> iconList;
4141
public static BufferedImage icon;
4242

4343
static {
4444
try {
45-
icon = ImageIO.read(Resources.class.getClass().getResourceAsStream("/the/bytecode/club/jda/images/icon.png"));
45+
icon = ImageIO.read(Resources.class.getClass().getResourceAsStream("/club/bytecode/the/jda/images/icon.png"));
4646
} catch (IOException e) {
4747
System.err.println("Failed to load program icon:");
4848
e.printStackTrace();

src/main/java/the/bytecode/club/jda/SecurityMan.java renamed to src/main/java/club/bytecode/the/jda/SecurityMan.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda;
1+
package club.bytecode.the.jda;
22

33
import java.io.FileDescriptor;
44
import java.net.InetAddress;
@@ -21,7 +21,7 @@ public void stopBlocking() { //slightly safer security system than just a public
2121
if (executedClass.equals("CFRDecompiler") ||
2222
executedClass.equals("ProcyonDecompiler") ||
2323
executedClass.equals("FernflowerDecompiler") ||
24-
executedClass.equals("the.bytecode.club.jda.JDA")) {
24+
executedClass.equals("JDA")) {
2525
blocking = false;
2626
} else
2727
for (StackTraceElement stackTraceElements : Thread.currentThread().getStackTrace()) {

src/main/java/the/bytecode/club/jda/api/ExceptionUI.java renamed to src/main/java/club/bytecode/the/jda/api/ExceptionUI.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package the.bytecode.club.jda.api;
1+
package club.bytecode.the.jda.api;
22

3-
import the.bytecode.club.jda.JDA;
4-
import the.bytecode.club.jda.Resources;
3+
import club.bytecode.the.jda.JDA;
4+
import club.bytecode.the.jda.Resources;
55

66
import javax.swing.*;
77
import java.awt.*;

src/main/java/the/bytecode/club/jda/api/Plugin.java renamed to src/main/java/club/bytecode/the/jda/api/Plugin.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package the.bytecode.club.jda.api;
1+
package club.bytecode.the.jda.api;
22

3-
import the.bytecode.club.jda.FileContainer;
3+
import club.bytecode.the.jda.FileContainer;
44

55
public interface Plugin {
66
int onGUILoad();

src/main/java/the/bytecode/club/jda/api/PluginLoader.java renamed to src/main/java/club/bytecode/the/jda/api/PluginLoader.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package the.bytecode.club.jda.api;
1+
package club.bytecode.the.jda.api;
22

3-
import the.bytecode.club.jda.JDA;
3+
import club.bytecode.the.jda.JDA;
44

55
import java.io.*;
66
import java.net.MalformedURLException;

src/main/java/the/bytecode/club/jda/decompilers/CFRDecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/CFRDecompiler.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
package the.bytecode.club.jda.decompilers;
1+
package club.bytecode.the.jda.decompilers;
22

3+
import club.bytecode.the.jda.JDA;
34
import org.apache.commons.io.FileUtils;
45
import org.benf.cfr.reader.bytecode.analysis.types.JavaTypeInstance;
56
import org.benf.cfr.reader.entities.ClassFile;
@@ -19,10 +20,9 @@
1920
import org.benf.cfr.reader.util.output.*;
2021
import org.objectweb.asm.tree.ClassNode;
2122
import org.zeroturnaround.zip.ZipUtil;
22-
import the.bytecode.club.jda.JDA;
23-
import the.bytecode.club.jda.JarUtils;
24-
import the.bytecode.club.jda.settings.JDADecompilerSettings;
25-
import the.bytecode.club.jda.settings.JDADecompilerSettings.SettingsEntry;
23+
import club.bytecode.the.jda.JarUtils;
24+
import club.bytecode.the.jda.settings.JDADecompilerSettings;
25+
import club.bytecode.the.jda.settings.JDADecompilerSettings.SettingsEntry;
2626

2727
import java.io.File;
2828
import java.io.IOException;

src/main/java/the/bytecode/club/jda/decompilers/Decompilers.java renamed to src/main/java/club/bytecode/the/jda/decompilers/Decompilers.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package the.bytecode.club.jda.decompilers;
1+
package club.bytecode.the.jda.decompilers;
22

3-
import the.bytecode.club.jda.decompilers.bytecode.BytecodeDecompiler;
3+
import club.bytecode.the.jda.decompilers.bytecode.BytecodeDecompiler;
44

55
import java.util.Collection;
66
import java.util.Collections;

src/main/java/the/bytecode/club/jda/decompilers/FernflowerDecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/FernflowerDecompiler.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package the.bytecode.club.jda.decompilers;
1+
package club.bytecode.the.jda.decompilers;
22

33
import org.jetbrains.java.decompiler.main.decompiler.BaseDecompiler;
44
import org.jetbrains.java.decompiler.main.decompiler.PrintStreamLogger;
55
import org.jetbrains.java.decompiler.main.extern.IResultSaver;
66
import org.objectweb.asm.tree.ClassNode;
77
import org.objectweb.asm.tree.InnerClassNode;
8-
import the.bytecode.club.jda.JDA;
9-
import the.bytecode.club.jda.settings.JDADecompilerSettings.SettingsEntry;
10-
import the.bytecode.club.jda.settings.Setting;
8+
import club.bytecode.the.jda.JDA;
9+
import club.bytecode.the.jda.settings.JDADecompilerSettings.SettingsEntry;
10+
import club.bytecode.the.jda.settings.Setting;
1111

1212
import java.io.IOException;
1313
import java.util.*;

src/main/java/the/bytecode/club/jda/decompilers/JDADecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/JDADecompiler.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package the.bytecode.club.jda.decompilers;
1+
package club.bytecode.the.jda.decompilers;
22

33
import org.objectweb.asm.tree.ClassNode;
4-
import the.bytecode.club.jda.JDA;
5-
import the.bytecode.club.jda.api.ExceptionUI;
6-
import the.bytecode.club.jda.settings.JDADecompilerSettings;
4+
import club.bytecode.the.jda.JDA;
5+
import club.bytecode.the.jda.api.ExceptionUI;
6+
import club.bytecode.the.jda.settings.JDADecompilerSettings;
77

88
import java.io.PrintWriter;
99
import java.io.StringWriter;

src/main/java/the/bytecode/club/jda/decompilers/ProcyonDecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/ProcyonDecompiler.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package the.bytecode.club.jda.decompilers;
1+
package club.bytecode.the.jda.decompilers;
22

3+
import club.bytecode.the.jda.JDA;
34
import com.strobel.assembler.InputTypeLoader;
45
import com.strobel.assembler.metadata.*;
56
import com.strobel.decompiler.DecompilationOptions;
67
import com.strobel.decompiler.DecompilerSettings;
78
import com.strobel.decompiler.PlainTextOutput;
89
import org.objectweb.asm.tree.ClassNode;
9-
import the.bytecode.club.jda.JDA;
10-
import the.bytecode.club.jda.settings.JDADecompilerSettings.SettingsEntry;
10+
import club.bytecode.the.jda.settings.JDADecompilerSettings.SettingsEntry;
1111

1212
import java.io.StringWriter;
1313
import java.util.Map;

src/main/java/the/bytecode/club/jda/decompilers/bytecode/BytecodeDecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/BytecodeDecompiler.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

3+
import club.bytecode.the.jda.JDA;
4+
import club.bytecode.the.jda.decompilers.JDADecompiler;
35
import org.objectweb.asm.Opcodes;
46
import org.objectweb.asm.tree.ClassNode;
57
import org.objectweb.asm.tree.FieldNode;
68
import org.objectweb.asm.tree.InnerClassNode;
79
import org.objectweb.asm.tree.MethodNode;
8-
import the.bytecode.club.jda.JDA;
9-
import the.bytecode.club.jda.decompilers.JDADecompiler;
10-
import the.bytecode.club.jda.settings.JDADecompilerSettings.SettingsEntry;
10+
import club.bytecode.the.jda.settings.JDADecompilerSettings.SettingsEntry;
1111

1212
import java.util.ArrayList;
1313
import java.util.Iterator;

src/main/java/the/bytecode/club/jda/decompilers/bytecode/FieldNodeDecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/FieldNodeDecompiler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

33
import org.objectweb.asm.Opcodes;
44
import org.objectweb.asm.Type;

src/main/java/the/bytecode/club/jda/decompilers/bytecode/InstructionPrinter.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/InstructionPrinter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

33
import org.apache.commons.lang3.StringEscapeUtils;
44
import org.objectweb.asm.Type;
55
import org.objectweb.asm.tree.*;
6-
import the.bytecode.club.jda.api.ExceptionUI;
6+
import club.bytecode.the.jda.api.ExceptionUI;
77

88
import java.io.BufferedWriter;
99
import java.io.File;

src/main/java/the/bytecode/club/jda/decompilers/bytecode/MethodNodeDecompiler.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/MethodNodeDecompiler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

3+
import club.bytecode.the.jda.JDA;
34
import org.objectweb.asm.Opcodes;
45
import org.objectweb.asm.Type;
56
import org.objectweb.asm.tree.*;
6-
import the.bytecode.club.jda.JDA;
77

88
import java.util.ArrayList;
99
import java.util.Arrays;

src/main/java/the/bytecode/club/jda/decompilers/bytecode/OpcodeInfo.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/OpcodeInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

33
import java.util.ArrayList;
44
import java.util.Arrays;

src/main/java/the/bytecode/club/jda/decompilers/bytecode/PrefixedStringBuilder.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/PrefixedStringBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

33
/**
44
* @author Bibl

src/main/java/the/bytecode/club/jda/decompilers/bytecode/TypeAndName.java renamed to src/main/java/club/bytecode/the/jda/decompilers/bytecode/TypeAndName.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package the.bytecode.club.jda.decompilers.bytecode;
1+
package club.bytecode.the.jda.decompilers.bytecode;
22

33
import org.objectweb.asm.Type;
44

src/main/java/the/bytecode/club/jda/gui/JDAWindow.java renamed to src/main/java/club/bytecode/the/jda/gui/JDAWindow.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package the.bytecode.club.jda.gui;
1+
package club.bytecode.the.jda.gui;
22

3+
import club.bytecode.the.jda.settings.IPersistentWindow;
34
import org.objectweb.asm.tree.ClassNode;
4-
import the.bytecode.club.jda.FileChangeNotifier;
5-
import the.bytecode.club.jda.settings.IPersistentWindow;
5+
import club.bytecode.the.jda.FileChangeNotifier;
66

77
import javax.swing.*;
88
import java.awt.*;

0 commit comments

Comments
 (0)