From 603245ee6218668eb8eb39e63ecedce257b3ef35 Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 11 Aug 2014 23:18:10 -0400 Subject: refactor Ancestries into Ancestries and JarIndex --- src/cuchaz/enigma/gui/GuiController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cuchaz/enigma/gui/GuiController.java') diff --git a/src/cuchaz/enigma/gui/GuiController.java b/src/cuchaz/enigma/gui/GuiController.java index 1946b4a..880f001 100644 --- a/src/cuchaz/enigma/gui/GuiController.java +++ b/src/cuchaz/enigma/gui/GuiController.java @@ -132,7 +132,7 @@ public class GuiController public ClassInheritanceTreeNode getClassInheritance( ClassEntry obfClassEntry ) { - ClassInheritanceTreeNode rootNode = m_deobfuscator.getAncestries().getClassInheritance( + ClassInheritanceTreeNode rootNode = m_deobfuscator.getJarIndex().getClassInheritance( m_deobfuscator.getTranslator( TranslationDirection.Deobfuscating ), obfClassEntry ); @@ -141,7 +141,7 @@ public class GuiController public MethodInheritanceTreeNode getMethodInheritance( MethodEntry obfMethodEntry ) { - MethodInheritanceTreeNode rootNode = m_deobfuscator.getAncestries().getMethodInheritance( + MethodInheritanceTreeNode rootNode = m_deobfuscator.getJarIndex().getMethodInheritance( m_deobfuscator.getTranslator( TranslationDirection.Deobfuscating ), obfMethodEntry ); -- cgit v1.2.3