summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cuchaz/enigma/analysis/TranslationIndex.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/analysis/TranslationIndex.java b/src/cuchaz/enigma/analysis/TranslationIndex.java
index e0e66bf7..adfb3faf 100644
--- a/src/cuchaz/enigma/analysis/TranslationIndex.java
+++ b/src/cuchaz/enigma/analysis/TranslationIndex.java
@@ -109,7 +109,7 @@ public class TranslationIndex implements Serializable {
109 109
110 // add the superclass 110 // add the superclass
111 ClassEntry superclassEntry = EntryFactory.getSuperclassEntry(c); 111 ClassEntry superclassEntry = EntryFactory.getSuperclassEntry(c);
112 if (superclassEntry != null && !isJre(superclassEntry)) { 112 if (superclassEntry != null) {
113 m_superclasses.put(classEntry, superclassEntry); 113 m_superclasses.put(classEntry, superclassEntry);
114 } 114 }
115 115