diff options
Diffstat (limited to 'src/main/java/cuchaz/enigma/mapping/MappingsTinyReader.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/mapping/MappingsTinyReader.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/cuchaz/enigma/mapping/MappingsTinyReader.java b/src/main/java/cuchaz/enigma/mapping/MappingsTinyReader.java index 69d5684..756ac43 100644 --- a/src/main/java/cuchaz/enigma/mapping/MappingsTinyReader.java +++ b/src/main/java/cuchaz/enigma/mapping/MappingsTinyReader.java | |||
| @@ -17,7 +17,7 @@ public class MappingsTinyReader { | |||
| 17 | public ClassMapping readClass(String[] parts) { | 17 | public ClassMapping readClass(String[] parts) { |
| 18 | // Extract the inner naming of the deob form if it have one | 18 | // Extract the inner naming of the deob form if it have one |
| 19 | String deobName = parts[2].contains("$") ? parts[2].substring(parts[2].lastIndexOf('$') + 1) : parts[2]; | 19 | String deobName = parts[2].contains("$") ? parts[2].substring(parts[2].lastIndexOf('$') + 1) : parts[2]; |
| 20 | return new ClassMapping(parts[1], deobName).setDeobInner(parts[2]); | 20 | return new ClassMapping(parts[1], deobName).setDeobfInner(parts[2]); |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | public FieldMapping readField(String[] parts) { | 23 | public FieldMapping readField(String[] parts) { |
| @@ -52,7 +52,7 @@ public class MappingsTinyReader { | |||
| 52 | parts[2]; | 52 | parts[2]; |
| 53 | 53 | ||
| 54 | // Add full deob name to the class mapping to handle inner class after this loop | 54 | // Add full deob name to the class mapping to handle inner class after this loop |
| 55 | classMappingMap.put(parts[2], classMapping.setDeobInner(parts[2])); | 55 | classMappingMap.put(parts[2], classMapping.setDeobfInner(parts[2])); |
| 56 | classMapping.setDeobfName(deobName); | 56 | classMapping.setDeobfName(deobName); |
| 57 | 57 | ||
| 58 | // Avoid to make the mapping dirty directly at the startup | 58 | // Avoid to make the mapping dirty directly at the startup |