Instance and construct pattern for Colls does not seem to work before full mcore migration.

This commit is contained in:
Olof Larsson 2013-04-10 10:10:28 +02:00
parent 879e8b4170
commit c6ea2016cb

View File

@ -18,7 +18,13 @@ import com.massivecraft.factions.zcore.util.TextUtil;
public class FactionColl extends EntityCollection<Faction> public class FactionColl extends EntityCollection<Faction>
{ {
// -------------------------------------------- //
// INSTANCE & CONSTRUCT
// -------------------------------------------- //
public static FactionColl i = new FactionColl(); public static FactionColl i = new FactionColl();
// public static FactionColl get() { return i; }
// TODO: Crap, does not work because of the instance method colliding.
private FactionColl() private FactionColl()
{ {