Skip to content
This repository was archived by the owner on Nov 28, 2020. It is now read-only.

Commit d723029

Browse files
committed
Tiny changes and readme updates
1 parent 10b3635 commit d723029

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An easy to use GUI for remapping classes, methods, and fields of compiled java p
77

88
1. Run the executable jar
99
2. From the File menu, load a jar _(Creates a listing of class files)_
10-
3. Select a class file _(This will decompile it with CFR)_
10+
3. Select a class file from the tree menu on the left _(This will decompile it with CFR)_
1111

1212
**Renaming a class**:
1313

shot.png

-32.2 KB
Loading

src/me/coley/Main.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void main(String[] args) {
1414
}
1515
Program program = new Program();
1616
program.showGui();
17-
program.onFileSelect(new java.io.File("JRemapper.jar"));
18-
program.onClassSelect(program.getJarReader().getMapping().getClass("io/github/bmf/FieldNode"));
17+
//program.onFileSelect(new java.io.File("JRemapper.jar"));
18+
//program.onClassSelect(program.getJarReader().getMapping().getClass("io/github/bmf/FieldNode"));
1919
}
2020
}

src/me/coley/parse/Context.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public class Context {
1616
"volatile");
1717
private final static List<String> ID_PRIMITIVES = Arrays.asList("void", "boolean", "byte", "char", "short", "int", "long", "float", "double");
1818
private final static List<String> ID_PRIMITIVES_SYMBOL = Arrays.asList("V", "Z", "B", "C", "S", "I", "J", "F", "D");
19-
private final static List<String> ID_LANG = Arrays.asList("String", "System");
20-
private final static List<String> ID_LANG_SYMBOL = Arrays.asList("Ljava/lang/String;", "Ljava/lang/System;");
19+
private final static List<String> ID_LANG = Arrays.asList("String", "System", "StringBuilder");
20+
private final static List<String> ID_LANG_SYMBOL = Arrays.asList("Ljava/lang/String;", "Ljava/lang/System;", "Ljava/lang/StringBuilder;");
2121
private final static String ID_PACKAGE = "package";
2222
private final static String ID_IMPORT = "import";
2323
private final static String ID_CLASS = "class";
@@ -26,7 +26,7 @@ public class Context {
2626
private final static String ID_EXTENDS = "extends";
2727
private final static String ID_ENUM = "enum";
2828
private final static String ID_FINAL = "final";
29-
private final static boolean debug = true;
29+
private final static boolean debug = false;
3030
private ClassType thisType;
3131
private Map<String, String> simpleToQuantified = new HashMap<>();
3232
private ContextType[] context;

0 commit comments

Comments
 (0)