diff options
Diffstat (limited to 'src/cuchaz/enigma/convert/ClassMatcher.java')
| -rw-r--r-- | src/cuchaz/enigma/convert/ClassMatcher.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cuchaz/enigma/convert/ClassMatcher.java b/src/cuchaz/enigma/convert/ClassMatcher.java index eb7a31d..290d90a 100644 --- a/src/cuchaz/enigma/convert/ClassMatcher.java +++ b/src/cuchaz/enigma/convert/ClassMatcher.java | |||
| @@ -57,8 +57,8 @@ public class ClassMatcher | |||
| 57 | // TEMP | 57 | // TEMP |
| 58 | JarFile sourceJar = new JarFile( new File( "input/1.8-pre3.jar" ) ); | 58 | JarFile sourceJar = new JarFile( new File( "input/1.8-pre3.jar" ) ); |
| 59 | JarFile destJar = new JarFile( new File( "input/1.8.jar" ) ); | 59 | JarFile destJar = new JarFile( new File( "input/1.8.jar" ) ); |
| 60 | File inMappingsFile = new File( "../minecraft-mappings/1.8-pre3.mappings" ); | 60 | File inMappingsFile = new File( "../Enigma Mappings/1.8-pre3.mappings" ); |
| 61 | File outMappingsFile = new File( "../minecraft-mappings/1.8.mappings" ); | 61 | File outMappingsFile = new File( "../Enigma 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(); |
| @@ -271,7 +271,7 @@ public class ClassMatcher | |||
| 271 | methodMapping.getObfName(), | 271 | methodMapping.getObfName(), |
| 272 | methodMapping.getObfSignature() | 272 | methodMapping.getObfSignature() |
| 273 | ); | 273 | ); |
| 274 | if( !destIndex.isMethodImplemented( methodEntry ) ) | 274 | if( !destIndex.containsObfBehavior( methodEntry ) ) |
| 275 | { | 275 | { |
| 276 | System.err.println( "WARNING: method doesn't match: " + methodEntry ); | 276 | System.err.println( "WARNING: method doesn't match: " + methodEntry ); |
| 277 | 277 | ||