Update changelog & minor formatting fixes

This commit is contained in:
TfT_02
2013-10-06 10:25:28 +02:00
parent 96b54387fe
commit 3f9c98d72e
5 changed files with 16 additions and 9 deletions

View File

@ -122,7 +122,8 @@ public final class FlatfileDatabaseManager implements DatabaseManager {
try {
lastPlayed = Long.parseLong(character[37]) * Misc.TIME_CONVERSION_FACTOR;
}
catch (NumberFormatException e) {}
catch (NumberFormatException e) {
}
if (lastPlayed == 0) {
OfflinePlayer player = Bukkit.getOfflinePlayer(name);
lastPlayed = player.getLastPlayed();
@ -406,7 +407,8 @@ public final class FlatfileDatabaseManager implements DatabaseManager {
in.close();
}
}
catch (IOException ignored) {}
catch (IOException e) {
}
}
}