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
@@ -33,11 +33,12 @@ public class LogoutCommand implements CommandExecutor {
private AuthMe plugin;
private DataSource database;
private Utils utils = Utils.getInstance();
private FileCache playerBackup = new FileCache();
private FileCache playerBackup;
public LogoutCommand(AuthMe plugin, DataSource database) {
this.plugin = plugin;
this.database = database;
this.playerBackup = new FileCache(plugin);
}
@Override
@@ -34,11 +34,12 @@ public class UnregisterCommand implements CommandExecutor {
private Messages m = Messages.getInstance();
public AuthMe plugin;
private DataSource database;
private FileCache playerCache = new FileCache();
private FileCache playerCache;
public UnregisterCommand(AuthMe plugin, DataSource database) {
this.plugin = plugin;
this.database = database;
this.playerCache = new FileCache(plugin);
}
@Override