mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Riking fix this or its gone.
This commit is contained in:
parent
f809bca47b
commit
2286728308
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user