getChilds added, applyPreserveRule removed

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1013 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 8560daa7e3
commit ff684745d1
  1. 11
      jode/jode/obfuscator/LocalIdentifier.java

@ -19,6 +19,14 @@
package jode.obfuscator;
///#ifdef JDK12
///import java.util.Collections;
///import java.util.Iterator;
///#else
import jode.util.Collections;
import jode.util.Iterator;
///#endif
public class LocalIdentifier extends Identifier {
String name;
String type;
@ -37,7 +45,8 @@ public class LocalIdentifier extends Identifier {
return type;
}
public void applyPreserveRule(IdentifierMatcher preserveRule) {
public Iterator getChilds() {
return Collections.EMPTY_LIST.iterator();
}
public Identifier getParent() {

Loading…
Cancel
Save