summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/Deobfuscator.java
diff options
context:
space:
mode:
authorGravatar jeff2014-09-03 00:20:36 -0400
committerGravatar jeff2014-09-03 00:20:36 -0400
commitb5338883d271779c335842c07047d60136316167 (patch)
tree006477e8c1ea0ade75ae8a9003abaf1978995fd7 /src/cuchaz/enigma/Deobfuscator.java
parentfixed bug with export progress bar (diff)
downloadenigma-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.java2
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 }