diff options
| author | 2014-09-03 23:56:11 -0400 | |
|---|---|---|
| committer | 2014-09-03 23:56:11 -0400 | |
| commit | 1faf3bee250f75d8c13708ab875a881a5b9cb6ed (patch) | |
| tree | 97845c1b8a184a6082b1b7ae199c632ea6375f8c /src/cuchaz/enigma/mapping/Translator.java | |
| parent | updated ignore list (diff) | |
| download | enigma-fork-1faf3bee250f75d8c13708ab875a881a5b9cb6ed.tar.gz enigma-fork-1faf3bee250f75d8c13708ab875a881a5b9cb6ed.tar.xz enigma-fork-1faf3bee250f75d8c13708ab875a881a5b9cb6ed.zip | |
removed deobfuscated method signatures from mappings
They're too much work to maintain, and they're totally unnecessary!
Diffstat (limited to 'src/cuchaz/enigma/mapping/Translator.java')
| -rw-r--r-- | src/cuchaz/enigma/mapping/Translator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuchaz/enigma/mapping/Translator.java b/src/cuchaz/enigma/mapping/Translator.java index f5aafdd..659ce9a 100644 --- a/src/cuchaz/enigma/mapping/Translator.java +++ b/src/cuchaz/enigma/mapping/Translator.java | |||
| @@ -180,7 +180,7 @@ public class Translator | |||
| 180 | // look for the method | 180 | // look for the method |
| 181 | MethodMapping methodMapping = m_direction.choose( | 181 | MethodMapping methodMapping = m_direction.choose( |
| 182 | classMapping.getMethodByObf( in.getName(), in.getSignature() ), | 182 | classMapping.getMethodByObf( in.getName(), in.getSignature() ), |
| 183 | classMapping.getMethodByDeobf( in.getName(), in.getSignature() ) | 183 | classMapping.getMethodByDeobf( in.getName(), translateSignature( in.getSignature() ) ) |
| 184 | ); | 184 | ); |
| 185 | if( methodMapping != null ) | 185 | if( methodMapping != null ) |
| 186 | { | 186 | { |
| @@ -248,7 +248,7 @@ public class Translator | |||
| 248 | // look for the method | 248 | // look for the method |
| 249 | MethodMapping methodMapping = m_direction.choose( | 249 | MethodMapping methodMapping = m_direction.choose( |
| 250 | classMapping.getMethodByObf( in.getMethodName(), in.getMethodSignature() ), | 250 | classMapping.getMethodByObf( in.getMethodName(), in.getMethodSignature() ), |
| 251 | classMapping.getMethodByDeobf( in.getMethodName(), in.getMethodSignature() ) | 251 | classMapping.getMethodByDeobf( in.getMethodName(), translateSignature( in.getMethodSignature() ) ) |
| 252 | ); | 252 | ); |
| 253 | if( methodMapping != null ) | 253 | if( methodMapping != null ) |
| 254 | { | 254 | { |