obfuscated identifiers cache fixed

Recompile test fixed
This commit is contained in:
Jindra Petřík
2014-11-23 16:24:29 +01:00
parent dc3b119a1e
commit 61dc5c9643
2 changed files with 10 additions and 2 deletions

View File

@@ -303,6 +303,12 @@ public class IdentifiersDeobfuscation {
if (s.startsWith("\u00A7") && s.endsWith("\u00A7")) { //Assuming already printed - TODO:detect better
return s;
}
for (String e : validExceptions) {
if (e.equals(s)) {
return s;
}
}
if (nameCache.containsKey(s)) {
return nameCache.get(s);
}