summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/analysis/JarIndex.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cuchaz/enigma/analysis/JarIndex.java')
-rw-r--r--src/cuchaz/enigma/analysis/JarIndex.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/analysis/JarIndex.java b/src/cuchaz/enigma/analysis/JarIndex.java
index 4279ded..fc19e7b 100644
--- a/src/cuchaz/enigma/analysis/JarIndex.java
+++ b/src/cuchaz/enigma/analysis/JarIndex.java
@@ -663,7 +663,11 @@ public class JarIndex
663 } 663 }
664 664
665 // look at interface methods too 665 // look at interface methods too
666 getRelatedMethodImplementations( methodEntries, getMethodImplementations( null, methodEntry ) ); 666 MethodImplementationsTreeNode implementations = getMethodImplementations( null, methodEntry );
667 if( implementations != null )
668 {
669 getRelatedMethodImplementations( methodEntries, implementations );
670 }
667 671
668 // recurse 672 // recurse
669 for( int i=0; i<node.getChildCount(); i++ ) 673 for( int i=0; i<node.getChildCount(); i++ )