Package cpw.mods.fml.common

Examples of cpw.mods.fml.common.MetadataCollection


            {
                FMLLog.finer("Ignoring coremod or tweak system %s", candidate.getModContainer());
                return foundMods;
            }
            ZipEntry modInfo = jar.getEntry("mcmod.info");
            MetadataCollection mc = null;
            if (modInfo != null)
            {
                FMLLog.finer("Located mcmod.info file in file %s", candidate.getModContainer().getName());
                mc = MetadataCollection.from(jar.getInputStream(modInfo), candidate.getModContainer().getName());
            }
View Full Code Here

TOP

Related Classes of cpw.mods.fml.common.MetadataCollection

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.