summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/ConvertMain.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cuchaz/enigma/ConvertMain.java')
-rw-r--r--src/main/java/cuchaz/enigma/ConvertMain.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/cuchaz/enigma/ConvertMain.java b/src/main/java/cuchaz/enigma/ConvertMain.java
index 7715003..1890aef 100644
--- a/src/main/java/cuchaz/enigma/ConvertMain.java
+++ b/src/main/java/cuchaz/enigma/ConvertMain.java
@@ -239,9 +239,11 @@ public class ConvertMain {
239 System.out.println("Writing method matches..."); 239 System.out.println("Writing method matches...");
240 240
241 // get the matched and unmatched mappings 241 // get the matched and unmatched mappings
242 MemberMatches<BehaviorEntry> methodMatches = MappingsConverter.computeMemberMatches( 242 MemberMatches<BehaviorEntry> methodMatches = MappingsConverter.computeMethodsMatches(
243 destDeobfuscator, 243 destDeobfuscator,
244 destMappings, 244 destMappings,
245 sourceDeobfuscator,
246 sourceMappings,
245 classMatches, 247 classMatches,
246 MappingsConverter.getMethodDoer() 248 MappingsConverter.getMethodDoer()
247 ); 249 );