Remove redundant maxReconnects database connection property

This commit is contained in:
zreed
2014-07-08 21:25:40 -04:00
committed by TfT_02
parent daab095557
commit 94a566acc9
2 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,6 @@ public final class SQLDatabaseManager implements DatabaseManager {
connectionProperties.put("user", Config.getInstance().getMySQLUserName());
connectionProperties.put("password", Config.getInstance().getMySQLUserPassword());
connectionProperties.put("autoReconnect", "false");
connectionProperties.put("maxReconnects", "0");
connection = DriverManager.getConnection(connectionString, connectionProperties);
mcMMO.p.getLogger().info("Connection to MySQL was a success!");