Package codechicken.obfuscator

Examples of codechicken.obfuscator.ObfuscationRun


        File mcDir = CodeChickenCorePlugin.minecraftDir;

        if (config.getTag("dev.deobfuscate")
                .setComment("set to true to completely deobfuscate mcp names")
                .getBooleanValue(!ObfMapping.obfuscated)) {
            run = new ObfuscationRun(false, ObfMapping.MCPRemapper.getConfFiles(),
                    ObfuscationRun.fillDefaults(new HashMap<String, String>()));
            run.obf.setHeirachyEvaluator(instance);
            run.setQuiet().parseMappings();
            for (String pkg : run.config.get("excludedPackages").split(";"))
                excludedPackages.add(pkg);
View Full Code Here

TOP

Related Classes of codechicken.obfuscator.ObfuscationRun

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.