diff options
Diffstat (limited to 'src/cuchaz/enigma/Deobfuscator.java')
| -rw-r--r-- | src/cuchaz/enigma/Deobfuscator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/Deobfuscator.java b/src/cuchaz/enigma/Deobfuscator.java index d15c25f..526534d 100644 --- a/src/cuchaz/enigma/Deobfuscator.java +++ b/src/cuchaz/enigma/Deobfuscator.java | |||
| @@ -192,7 +192,7 @@ public class Deobfuscator | |||
| 192 | // we need to tell the decompiler the deobfuscated name so it doesn't get freaked out | 192 | // we need to tell the decompiler the deobfuscated name so it doesn't get freaked out |
| 193 | // the decompiler only sees the deobfuscated class, so we need to load it by the deobfuscated name | 193 | // the decompiler only sees the deobfuscated class, so we need to load it by the deobfuscated name |
| 194 | ClassMapping classMapping = m_mappings.getClassByObf( className ); | 194 | ClassMapping classMapping = m_mappings.getClassByObf( className ); |
| 195 | if( classMapping != null ) | 195 | if( classMapping != null && classMapping.getDeobfName() != null ) |
| 196 | { | 196 | { |
| 197 | className = classMapping.getDeobfName(); | 197 | className = classMapping.getDeobfName(); |
| 198 | } | 198 | } |