Package cuchaz.enigma.mapping

Examples of cuchaz.enigma.mapping.MappingsWriter


  public void saveMappings( File file )
  throws IOException
  {
    FileWriter out = new FileWriter( file );
    new MappingsWriter().write( out, m_deobfuscator.getMappings() );
    out.close();
    m_isDirty = false;
  }
View Full Code Here


    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 );
    writer.close();
    System.out.println( "Wrote converted mappings to:\n\t" + outMappingsFile.getAbsolutePath() );
  }
View Full Code Here

TOP

Related Classes of cuchaz.enigma.mapping.MappingsWriter

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.