Issue #48 Decompile only specified class

This commit is contained in:
Jindra Pet��k
2013-04-20 11:51:59 +02:00
parent 05d1aa0f79
commit 3e0eb0fe48
4 changed files with 53 additions and 3 deletions
@@ -872,4 +872,13 @@ public class ABC {
}
return -1;
}
public int findScriptByPath(String name) {
for (int c = 0; c < script_info.length; c++) {
String s = script_info[c].getPath(this);
if (name.equals(s)) {
return c;
}
}
return -1;
}
}