Commit 773fad66 authored by Daniel Ramos's avatar Daniel Ramos

Fix issue where name generation on variables of deobfuscated objects were...

Fix issue where name generation on variables of deobfuscated objects were sometimes based off of the original class name, and not the alias.
parent e250c731
......@@ -164,6 +164,7 @@ public class NameGen {
if (vName != null) {
return vName;
}
return StringUtils.escape(shortName.toLowerCase());
}
return StringUtils.escape(type.toString());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment