Package cuchaz.enigma.analysis

Examples of cuchaz.enigma.analysis.BridgeFixer


   
    // check that the file is correct after inner class reconstruction (ie cause Javassist to fail fast if something is wrong)
    assertClassName( c, obfClassEntry );
   
    // do all kinds of deobfuscating transformations on the class
    new BridgeFixer( m_jarIndex ).fixBridges( c );
    new MethodParameterWriter( m_deobfuscatingTranslator ).writeMethodArguments( c );
    new ClassTranslator( m_deobfuscatingTranslator ).translate( c );
   
    return c;
  }
View Full Code Here

TOP

Related Classes of cuchaz.enigma.analysis.BridgeFixer

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.