Removed all create calls
This commit is contained in:
parent
4b937dfade
commit
aca7fd6849
@ -76,7 +76,7 @@ public class AccountRepository extends RepositoryBase
|
||||
@Override
|
||||
protected void initialize()
|
||||
{
|
||||
executeUpdate(CREATE_ACCOUNT_TABLE);
|
||||
//executeUpdate(CREATE_ACCOUNT_TABLE);
|
||||
}
|
||||
|
||||
public void login(NautHashMap<String, ILoginProcessor> loginProcessors, String uuid, String name)
|
||||
|
@ -23,7 +23,7 @@ public class EloRepository extends RepositoryBase
|
||||
|
||||
public void initialize()
|
||||
{
|
||||
executeUpdate(CREATE_ELO_TABLE);
|
||||
//executeUpdate(CREATE_ELO_TABLE);
|
||||
}
|
||||
|
||||
public void saveElo(String uuid, String gameType, int elo)
|
||||
|
@ -28,7 +28,7 @@ public class FriendRepository extends RepositoryBase
|
||||
@Override
|
||||
protected void initialize()
|
||||
{
|
||||
executeUpdate(CREATE_FRIEND_TABLE);
|
||||
//executeUpdate(CREATE_FRIEND_TABLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -25,7 +25,7 @@ public class PreferencesRepository extends RepositoryBase
|
||||
@Override
|
||||
protected void initialize()
|
||||
{
|
||||
executeUpdate(CREATE_ACCOUNT_TABLE);
|
||||
//executeUpdate(CREATE_ACCOUNT_TABLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -25,6 +25,7 @@ public class SimpleStatsRepository
|
||||
|
||||
public void initialize()
|
||||
{
|
||||
/*
|
||||
PreparedStatement preparedStatement = null;
|
||||
|
||||
try
|
||||
@ -55,6 +56,7 @@ public class SimpleStatsRepository
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
public NautHashMap<String, String> retrieveStatRecords()
|
||||
|
@ -30,7 +30,7 @@ public class SpawnRepository extends RepositoryBase
|
||||
@Override
|
||||
protected void initialize()
|
||||
{
|
||||
executeUpdate(CREATE_SPAWN_TABLE);
|
||||
//executeUpdate(CREATE_SPAWN_TABLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -37,8 +37,8 @@ public class StatsRepository extends RepositoryBase
|
||||
@Override
|
||||
protected void initialize()
|
||||
{
|
||||
executeUpdate(CREATE_STAT_TABLE);
|
||||
executeUpdate(CREATE_STAT_RELATION_TABLE);
|
||||
//executeUpdate(CREATE_STAT_TABLE);
|
||||
//executeUpdate(CREATE_STAT_RELATION_TABLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -179,7 +179,7 @@ public class HubManager extends MiniClientPlugin<HubClient>
|
||||
|
||||
_mountManager = new MountManager(_plugin, clientManager, donationManager, blockRestore, _disguiseManager);
|
||||
_inventoryManager = new InventoryManager(plugin, clientManager);
|
||||
new BenefitManager(plugin, clientManager, _inventoryManager);
|
||||
//new BenefitManager(plugin, clientManager, _inventoryManager);
|
||||
_gadgetManager = new GadgetManager(_plugin, clientManager, donationManager, _inventoryManager, _mountManager, petManager, preferences, disguiseManager, blockRestore, new ProjectileManager(plugin));
|
||||
_treasureManager = new TreasureManager(_plugin, donationManager, _inventoryManager, petManager, _blockRestore, hologramManager);
|
||||
new CosmeticManager(_plugin, clientManager, donationManager, _inventoryManager, _gadgetManager, _mountManager, petManager, _treasureManager);
|
||||
|
Loading…
Reference in New Issue
Block a user