Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
anjagruenheid committed Jan 30, 2024
1 parent c471938 commit 799eddb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.lang3.exception.ExceptionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ public Connection createConnection() throws ClientException {
DriverManager.getConnection(url), this.maxNumRetries, this.showWarnings);
} else {
return new JDBCConnection(
DriverManager.getConnection(url, username, password), this.maxNumRetries, this.showWarnings);
DriverManager.getConnection(url, username, password),
this.maxNumRetries,
this.showWarnings);
}
} catch (SQLException e) {
throw new ClientException(e);
Expand Down

0 comments on commit 799eddb

Please sign in to comment.