Package cuchaz.enigma.mapping

Examples of cuchaz.enigma.mapping.MappingsReader


 
  public void openMappings( File file )
  throws IOException, MappingParseException
  {
    FileReader in = new FileReader( file );
    m_deobfuscator.setMappings( new MappingsReader().read( in ) );
    in.close();
    m_isDirty = false;
    m_gui.setMappingsFile( file );
    refreshClasses();
    refreshCurrentClass();
View Full Code Here


    fallbackMatching.put( "none/ayb", "none/ayf" );
    fallbackMatching.put( "none/ayd", "none/ayd" );
    fallbackMatching.put( "none/bgk", "unknown/bgk" );
   
    // do the conversion
    Mappings mappings = new MappingsReader().read( new FileReader( inMappingsFile ) );
    convertMappings( sourceJar, destJar, mappings, fallbackMatching );
   
    // write out the converted mappings
    FileWriter writer = new FileWriter( outMappingsFile );
    new MappingsWriter().write( writer, mappings );
View Full Code Here

TOP

Related Classes of cuchaz.enigma.mapping.MappingsReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.