diff options
Diffstat (limited to 'src/main/java/cuchaz/enigma/analysis/TranslationIndex.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/analysis/TranslationIndex.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java b/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java index 0c8ed9c..644a3f2 100644 --- a/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java +++ b/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java | |||
| @@ -76,8 +76,8 @@ public class TranslationIndex { | |||
| 76 | } | 76 | } |
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | protected ClassDefEntry indexClass(int access, String name, String superName, String[] interfaces) { | 79 | protected ClassDefEntry indexClass(int access, String name, String signature, String superName, String[] interfaces) { |
| 80 | ClassDefEntry classEntry = new ClassDefEntry(name, new AccessFlags(access)); | 80 | ClassDefEntry classEntry = new ClassDefEntry(name, Signature.createSignature(signature), new AccessFlags(access)); |
| 81 | if (isJre(classEntry)) { | 81 | if (isJre(classEntry)) { |
| 82 | return null; | 82 | return null; |
| 83 | } | 83 | } |