Fix refactoring typos

This commit is contained in:
Marco Cunha 2012-10-22 19:05:13 +02:00
parent 896f57f0b4
commit 58a15e61dd
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public class SQLReconnect implements Runnable {
@Override
public void run() {
if (Database.checkConnection()) {
if (Database.checkConnected()) {
Users.saveAll(); //Save all profiles
Users.clearAll(); //Clear the profiles

View File

@ -225,7 +225,7 @@ public class Database {
try {
statement.close();
} catch (SQLException e) {
printErrors(ex);
printErrors(e);
return false;
}
}