diff options
| author | 2018-06-22 22:29:41 +0200 | |
|---|---|---|
| committer | 2018-06-22 22:29:41 +0200 | |
| commit | 7ec433f1ecc5b44f8b690c7443d5e38ac0e6422d (patch) | |
| tree | 346ba1771ce56d46cab67ee4b80c86214856db54 /src/main/java/cuchaz/enigma/analysis/TranslationIndex.java | |
| parent | Fix compile issues (diff) | |
| download | enigma-fork-7ec433f1ecc5b44f8b690c7443d5e38ac0e6422d.tar.gz enigma-fork-7ec433f1ecc5b44f8b690c7443d5e38ac0e6422d.tar.xz enigma-fork-7ec433f1ecc5b44f8b690c7443d5e38ac0e6422d.zip | |
Resolve all failed tests
Diffstat (limited to 'src/main/java/cuchaz/enigma/analysis/TranslationIndex.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/analysis/TranslationIndex.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java b/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java index 644a3f2..b2ddc5f 100644 --- a/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java +++ b/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java | |||
| @@ -84,7 +84,7 @@ public class TranslationIndex { | |||
| 84 | 84 | ||
| 85 | // add the superclass | 85 | // add the superclass |
| 86 | ClassEntry superclassEntry = entryPool.getClass(superName); | 86 | ClassEntry superclassEntry = entryPool.getClass(superName); |
| 87 | if (!isJre(superclassEntry)) { | 87 | if (superclassEntry != null) { |
| 88 | this.superclasses.put(classEntry, superclassEntry); | 88 | this.superclasses.put(classEntry, superclassEntry); |
| 89 | } | 89 | } |
| 90 | 90 | ||