Examples of cloneToNewClass()


Examples of cuchaz.enigma.mapping.Entry.cloneToNewClass()

      // try to resolve the class
      ClassEntry resolvedObfClassEntry = m_jarIndex.resolveEntryClass( obfEntry );
      if( resolvedObfClassEntry != null && !resolvedObfClassEntry.equals( obfEntry.getClassEntry() ) )
      {
        // change the class of the entry
        obfEntry = obfEntry.cloneToNewClass( resolvedObfClassEntry );
       
        // save the new deobfuscated reference
        deobfReference.entry = deobfuscateEntry( obfEntry );
        index.replaceDeobfReference( token, deobfReference );
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.