summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/gui/GuiController.java
diff options
context:
space:
mode:
authorGravatar jeff2014-08-11 23:18:10 -0400
committerGravatar jeff2014-08-11 23:18:10 -0400
commit603245ee6218668eb8eb39e63ecedce257b3ef35 (patch)
tree80cc294f793758ed4509187c58b86d96f5b62473 /src/cuchaz/enigma/gui/GuiController.java
parentadded method inheritance browsing (diff)
downloadenigma-fork-603245ee6218668eb8eb39e63ecedce257b3ef35.tar.gz
enigma-fork-603245ee6218668eb8eb39e63ecedce257b3ef35.tar.xz
enigma-fork-603245ee6218668eb8eb39e63ecedce257b3ef35.zip
refactor Ancestries into Ancestries and JarIndex
Diffstat (limited to 'src/cuchaz/enigma/gui/GuiController.java')
-rw-r--r--src/cuchaz/enigma/gui/GuiController.java4
1 files changed, 2 insertions, 2 deletions
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
132 132
133 public ClassInheritanceTreeNode getClassInheritance( ClassEntry obfClassEntry ) 133 public ClassInheritanceTreeNode getClassInheritance( ClassEntry obfClassEntry )
134 { 134 {
135 ClassInheritanceTreeNode rootNode = m_deobfuscator.getAncestries().getClassInheritance( 135 ClassInheritanceTreeNode rootNode = m_deobfuscator.getJarIndex().getClassInheritance(
136 m_deobfuscator.getTranslator( TranslationDirection.Deobfuscating ), 136 m_deobfuscator.getTranslator( TranslationDirection.Deobfuscating ),
137 obfClassEntry 137 obfClassEntry
138 ); 138 );
@@ -141,7 +141,7 @@ public class GuiController
141 141
142 public MethodInheritanceTreeNode getMethodInheritance( MethodEntry obfMethodEntry ) 142 public MethodInheritanceTreeNode getMethodInheritance( MethodEntry obfMethodEntry )
143 { 143 {
144 MethodInheritanceTreeNode rootNode = m_deobfuscator.getAncestries().getMethodInheritance( 144 MethodInheritanceTreeNode rootNode = m_deobfuscator.getJarIndex().getMethodInheritance(
145 m_deobfuscator.getTranslator( TranslationDirection.Deobfuscating ), 145 m_deobfuscator.getTranslator( TranslationDirection.Deobfuscating ),
146 obfMethodEntry 146 obfMethodEntry
147 ); 147 );