summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/convert/ClassMatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cuchaz/enigma/convert/ClassMatcher.java')
-rw-r--r--src/cuchaz/enigma/convert/ClassMatcher.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cuchaz/enigma/convert/ClassMatcher.java b/src/cuchaz/enigma/convert/ClassMatcher.java
index 0821bd3..135d076 100644
--- a/src/cuchaz/enigma/convert/ClassMatcher.java
+++ b/src/cuchaz/enigma/convert/ClassMatcher.java
@@ -55,16 +55,16 @@ public class ClassMatcher
55 throws IOException, MappingParseException 55 throws IOException, MappingParseException
56 { 56 {
57 // TEMP 57 // TEMP
58 JarFile sourceJar = new JarFile( new File( "input/1.8-pre1.jar" ) ); 58 JarFile sourceJar = new JarFile( new File( "input/1.8-pre3.jar" ) );
59 JarFile destJar = new JarFile( new File( "input/1.8-pre3.jar" ) ); 59 JarFile destJar = new JarFile( new File( "input/1.8.jar" ) );
60 File inMappingsFile = new File( "../minecraft-mappings/1.8-pre.mappings" ); 60 File inMappingsFile = new File( "../minecraft-mappings/1.8-pre3.mappings" );
61 File outMappingsFile = new File( "../minecraft-mappings/1.8-pre3.mappings" ); 61 File outMappingsFile = new File( "../minecraft-mappings/1.8.mappings" );
62 62
63 // define a matching to use when the automated system cannot find a match 63 // define a matching to use when the automated system cannot find a match
64 Map<String,String> fallbackMatching = Maps.newHashMap(); 64 Map<String,String> fallbackMatching = Maps.newHashMap();
65 fallbackMatching.put( "none/ayb", "none/ayb" ); 65 fallbackMatching.put( "none/ayb", "none/ayf" );
66 fallbackMatching.put( "none/ayd", "none/ayd" ); 66 fallbackMatching.put( "none/ayd", "none/ayd" );
67 fallbackMatching.put( "none/bgk", "none/bgk" ); 67 fallbackMatching.put( "none/bgk", "unknown/bgk" );
68 68
69 // do the conversion 69 // do the conversion
70 Mappings mappings = new MappingsReader().read( new FileReader( inMappingsFile ) ); 70 Mappings mappings = new MappingsReader().read( new FileReader( inMappingsFile ) );