diff options
Diffstat (limited to 'src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java')
| -rw-r--r-- | src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java b/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java index 2ed141f..d3fc9dc 100644 --- a/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java +++ b/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java | |||
| @@ -53,11 +53,11 @@ public class ClassInheritanceTreeNode extends DefaultMutableTreeNode | |||
| 53 | return m_obfClassName; | 53 | return m_obfClassName; |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | public void load( Ancestries ancestries, boolean recurse ) | 56 | public void load( TranslationIndex ancestries, boolean recurse ) |
| 57 | { | 57 | { |
| 58 | // get all the child nodes | 58 | // get all the child nodes |
| 59 | List<ClassInheritanceTreeNode> nodes = Lists.newArrayList(); | 59 | List<ClassInheritanceTreeNode> nodes = Lists.newArrayList(); |
| 60 | for( String subclassName : ancestries.getSubclasses( m_obfClassName ) ) | 60 | for( String subclassName : ancestries.getSubclassNames( m_obfClassName ) ) |
| 61 | { | 61 | { |
| 62 | nodes.add( new ClassInheritanceTreeNode( m_deobfuscatingTranslator, subclassName ) ); | 62 | nodes.add( new ClassInheritanceTreeNode( m_deobfuscatingTranslator, subclassName ) ); |
| 63 | } | 63 | } |