diff options
| author | 2015-04-11 14:06:04 -0400 | |
|---|---|---|
| committer | 2015-04-11 14:06:04 -0400 | |
| commit | 808a855be801d101790e370e6fe0368117aba15d (patch) | |
| tree | 721efa2c04e9d556662cefda82ead38679770163 /src/cuchaz | |
| parent | resolve methods using interfaces as well as superclasses (diff) | |
| download | enigma-808a855be801d101790e370e6fe0368117aba15d.tar.gz enigma-808a855be801d101790e370e6fe0368117aba15d.tar.xz enigma-808a855be801d101790e370e6fe0368117aba15d.zip | |
save more translation information for m3l
Diffstat (limited to 'src/cuchaz')
| -rw-r--r-- | src/cuchaz/enigma/analysis/TranslationIndex.java | 2 |
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 | ||