Package com.nitnelave.CreeperHeal.block

Examples of com.nitnelave.CreeperHeal.block.CreeperExplosion


        {
            LinkedList<CreeperExplosion> list = iter.next();
            Iterator<CreeperExplosion> it = list.iterator();
            while (it.hasNext())
            {
                CreeperExplosion e = it.next();
                if (e.isEmpty())
                    it.remove();
            }
            if (list.isEmpty())
                iter.remove();
        }
View Full Code Here

TOP

Related Classes of com.nitnelave.CreeperHeal.block.CreeperExplosion

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.