diff options
Diffstat (limited to '')
| -rw-r--r-- | src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java b/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java index 73f9714..d77fd85 100644 --- a/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java +++ b/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java | |||
| @@ -83,7 +83,7 @@ public class MethodInheritanceTreeNode extends DefaultMutableTreeNode | |||
| 83 | { | 83 | { |
| 84 | // get all the child nodes | 84 | // get all the child nodes |
| 85 | List<MethodInheritanceTreeNode> nodes = Lists.newArrayList(); | 85 | List<MethodInheritanceTreeNode> nodes = Lists.newArrayList(); |
| 86 | for( String subclassName : index.getAncestries().getSubclasses( m_entry.getClassName() ) ) | 86 | for( String subclassName : index.getTranslationIndex().getSubclassNames( m_entry.getClassName() ) ) |
| 87 | { | 87 | { |
| 88 | MethodEntry methodEntry = new MethodEntry( | 88 | MethodEntry methodEntry = new MethodEntry( |
| 89 | new ClassEntry( subclassName ), | 89 | new ClassEntry( subclassName ), |