diff options
| author | 2014-09-03 00:20:36 -0400 | |
|---|---|---|
| committer | 2014-09-03 00:20:36 -0400 | |
| commit | b5338883d271779c335842c07047d60136316167 (patch) | |
| tree | 006477e8c1ea0ade75ae8a9003abaf1978995fd7 /src/cuchaz/enigma/Deobfuscator.java | |
| parent | fixed bug with export progress bar (diff) | |
| download | enigma-fork-b5338883d271779c335842c07047d60136316167.tar.gz enigma-fork-b5338883d271779c335842c07047d60136316167.tar.xz enigma-fork-b5338883d271779c335842c07047d60136316167.zip | |
big refactor to better model class/method mappings with no deobf name
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 | } |