Rework cache system - Add Javadoc for AuthMe

This commit is contained in:
Xephi
2014-08-22 06:51:56 +02:00
parent e9032d1739
commit e5189283ed
375 changed files with 93072 additions and 236 deletions
@@ -31,7 +31,7 @@ public class ProcessSyncronousPlayerLogin implements Runnable {
private AuthMe plugin;
private DataSource database;
private PluginManager pm;
private FileCache playerCache = new FileCache();
private FileCache playerCache;
public ProcessSyncronousPlayerLogin(Player player, AuthMe plugin,
DataSource data) {
@@ -42,6 +42,7 @@ public class ProcessSyncronousPlayerLogin implements Runnable {
this.name = player.getName().toLowerCase();
this.limbo = LimboCache.getInstance().getLimboPlayer(name);
this.auth = database.getAuth(name);
this.playerCache = new FileCache(plugin);
}
public LimboPlayer getLimbo() {