Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit 1793021

Browse files
committed
release 0.0.7-beta
1 parent 3d105e2 commit 1793021

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/main/java/me/n1ar4/jar/obfuscator/asm/MethodNameChanger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void visit(int version, int access, String name, String signature, String
4646
}
4747
if (key != null) {
4848
List<String> methodNames = ObfEnv.ignoredClassMethodsMapping.get(key);
49-
if(methodNames!=null){
49+
if (methodNames != null) {
5050
ignoreMethodString.addAll(methodNames);
5151
}
5252
}

src/main/java/me/n1ar4/jar/obfuscator/utils/ColorUtil.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,19 @@ public class ColorUtil {
66
private static final String ANSI_GREEN = "\033[32m";
77
private static final String ANSI_BLUE = "\033[34m";
88
private static final String ANSI_YELLOW = "\033[33m";
9+
910
public static String red(String input) {
1011
return ANSI_RED + input + ANSI_RESET;
1112
}
13+
1214
public static String green(String input) {
1315
return ANSI_GREEN + input + ANSI_RESET;
1416
}
17+
1518
public static String blue(String input) {
1619
return ANSI_BLUE + input + ANSI_RESET;
1720
}
21+
1822
public static String yellow(String input) {
1923
return ANSI_YELLOW + input + ANSI_RESET;
2024
}

0 commit comments

Comments
 (0)