Not going to be lazy

This commit is contained in:
Olof Larsson 2015-03-05 00:14:24 +01:00
parent 1dab81ede3
commit 8d584eb249
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ public class BoardColl extends Coll<Board> implements BoardInterface
public static BoardColl get() { return i; } public static BoardColl get() { return i; }
private BoardColl() private BoardColl()
{ {
super(Const.COLLECTION_BOARD, Board.class, MStore.getDb(), Factions.get(), false, true, true); super(Const.COLLECTION_BOARD, Board.class, MStore.getDb(), Factions.get(), true, true);
} }
// -------------------------------------------- // // -------------------------------------------- //

View File

@ -19,7 +19,7 @@ public class MFlagColl extends Coll<MFlag>
public static MFlagColl get() { return i; } public static MFlagColl get() { return i; }
private MFlagColl() private MFlagColl()
{ {
super(Const.COLLECTION_MFLAG, MFlag.class, MStore.getDb(), Factions.get(), false, false, true, null, PriorityComparator.get()); super(Const.COLLECTION_MFLAG, MFlag.class, MStore.getDb(), Factions.get(), false, true, null, PriorityComparator.get());
} }
// -------------------------------------------- // // -------------------------------------------- //

View File

@ -19,7 +19,7 @@ public class MPermColl extends Coll<MPerm>
public static MPermColl get() { return i; } public static MPermColl get() { return i; }
private MPermColl() private MPermColl()
{ {
super(Const.COLLECTION_MPERM, MPerm.class, MStore.getDb(), Factions.get(), false, false, true, null, PriorityComparator.get()); super(Const.COLLECTION_MPERM, MPerm.class, MStore.getDb(), Factions.get(), false, true, null, PriorityComparator.get());
} }
// -------------------------------------------- // // -------------------------------------------- //