Skip to content

Commit

Permalink
89 fix next release setting (#92)
Browse files Browse the repository at this point in the history
* Testcase cleanup

Signed-off-by: John Eberhard <[email protected]>

* Change to compile with JDK 6

* Another compile fix

Signed-off-by: John Eberhard <[email protected]>

---------

Signed-off-by: John Eberhard <[email protected]>
  • Loading branch information
jeber-ibm authored Mar 29, 2024
1 parent f72e7a2 commit 8a3f321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/JDPerformanceUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ public static void showResults(ResultSet rs) throws Exception {
for (int i = 1; i <= columnCount; i++) {
columnHeader[i] = rsmd.getColumnName(i);
columnWidth[i]=columnHeader[i].length();
columnContents[i] = new Vector<>();
columnContents[i] = new Vector();
}

while (rs.next()) {
Expand Down

0 comments on commit 8a3f321

Please sign in to comment.