Package net.minecraftforge.srg2source.rangeapplier

Examples of net.minecraftforge.srg2source.rangeapplier.MethodData


        // rename methods
        for (Entry<MethodData, MethodData> e : extraSrg.methodMap.entrySet())
        {
            String notchName = remapMethodName(e.getValue().name, methodMap);
            String notchSig = remapSig(e.getValue().sig, classMap);
            inSrg.methodMap.put(new MethodData(notchName, notchSig), e.getValue());
            excRemap.put(e.getKey().name, e.getValue().name);
        }
       
        return excRemap;
    }
View Full Code Here


     * @param methodMap  SRG -> notch names.
     * @return
     */
    private static String remapMethodName(String name, Map<MethodData, MethodData> methodMap)
    {
        MethodData key = null;
        for (MethodData data : methodMap.keySet())
        {
            if (data.name.equals(name))
            {
                key = data;
View Full Code Here

TOP

Related Classes of net.minecraftforge.srg2source.rangeapplier.MethodData

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.