Fix issue where name generation on variables of deobfuscated objects were sometimes based off of the original class name, and not the alias.

This commit is contained in:
Daniel Ramos
2017-04-29 15:26:07 -04:00
parent e250c73109
commit 773fad66bb
@@ -164,6 +164,7 @@ public class NameGen {
if (vName != null) {
return vName;
}
return StringUtils.escape(shortName.toLowerCase());
}
return StringUtils.escape(type.toString());
}