!Removed unnecessary line

This commit is contained in:
ASangarin 2020-09-16 15:51:41 +02:00
parent 5cae155273
commit fc5eea28e0

View File

@ -29,9 +29,8 @@ public class MySQLDataProvider implements DataProvider {
private void initialize() {
try {
Class.forName("com.mysql.jdbc.Driver");
connection = DriverManager.getConnection(config.getConnectionString(), config.getUser(), config.getPassword());
} catch (ClassNotFoundException | SQLException exception) {
} catch (SQLException exception) {
throw new IllegalArgumentException("Could not initialize MySQL support: " + exception.getMessage());
}
}