summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/ConvertMain.java
diff options
context:
space:
mode:
authorGravatar Thog2016-10-17 14:37:27 +0200
committerGravatar Thog2016-10-17 14:37:27 +0200
commit17feccc4b5e8a6205a8ddb17b91ef61fcfa2186c (patch)
treeb6f0d33c8eed36fe4e2d72107b3710d58c661993 /src/main/java/cuchaz/enigma/ConvertMain.java
parentPreparing needed things for the modification (diff)
downloadenigma-fork-17feccc4b5e8a6205a8ddb17b91ef61fcfa2186c.tar.gz
enigma-fork-17feccc4b5e8a6205a8ddb17b91ef61fcfa2186c.tar.xz
enigma-fork-17feccc4b5e8a6205a8ddb17b91ef61fcfa2186c.zip
Method Converter: Add bytecode matching to match what is identical
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 );