allow partial table

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@563 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 01618f9634
commit b40003d84a
  1. 10
      jode/jode/obfuscator/Identifier.java

@ -221,8 +221,14 @@ public abstract class Identifier {
}
public void readTable(Hashtable table) {
if (isRepresentative())
setAlias((String) table.get(getFullName()));
Identifier rep = getRepresentative();
if (!rep.wasAliased) {
String newAlias = (String) table.get(getFullName());
if (newAlias != null) {
rep.wasAliased = true;
rep.setAlias(newAlias);
}
}
}
public abstract void applyPreserveRule(int preserveRule);

Loading…
Cancel
Save