diff options
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 | { |