Skip to content

Commit

Permalink
Java Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jdunkerley committed Jun 28, 2022
1 parent db3859c commit 41fbd43
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ public static Connection getConnection(String url, Properties properties) throws
return DriverManager.getConnection(url, properties);
}

public static String[] getStringColumn(ResultSet resultSet, String column)
throws SQLException {
public static String[] getStringColumn(ResultSet resultSet, String column) throws SQLException {
if (resultSet.isClosed()) {
return new String[0];
}
Expand Down

0 comments on commit 41fbd43

Please sign in to comment.