Skip to content

Commit 2efda4a

Browse files
committed
fix bug
1 parent 5a5e2c4 commit 2efda4a

File tree

1 file changed

+2
-2
lines changed
  • plugin/src/main/java/top/niunaijun/blackobfuscator/core

1 file changed

+2
-2
lines changed

plugin/src/main/java/top/niunaijun/blackobfuscator/core/ObfDex.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ private static void handleDex(File input, int depth, String[] obfClass) {
5555

5656
new Dex2jarCmd(new ObfuscatorConfiguration() {
5757
@Override
58-
protected int getObfDepth() {
58+
public int getObfDepth() {
5959
return depth;
6060
}
6161

6262
@Override
63-
protected boolean accept(String className, String methodName) {
63+
public boolean accept(String className, String methodName) {
6464
System.out.println("BlackObf Class: " + className + "#" + methodName);
6565
return super.accept(className, methodName);
6666
}

0 commit comments

Comments
 (0)