Riking fix this or its gone.

This commit is contained in:
t00thpick1 2014-07-31 13:07:21 -04:00
parent f809bca47b
commit 2286728308

View File

@ -40,7 +40,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
private ConnectionPool connectionPool;
protected SQLDatabaseManager() throws ClassNotFoundException {
protected SQLDatabaseManager() {
String connectionString = "jdbc:mysql://" + Config.getInstance().getMySQLServerName() + ":" + Config.getInstance().getMySQLServerPort() + "/" + Config.getInstance().getMySQLDatabaseName();
try {
@ -49,7 +49,8 @@ public final class SQLDatabaseManager implements DatabaseManager {
}
catch (ClassNotFoundException e) {
e.printStackTrace();
throw e; // aborts onEnable()
return;
//throw e; // aborts onEnable() Riking if you want to do this, fully implement it.
}
Properties connectionProperties = new Properties();