comparison tests/JDBC_API_Tester.java @ 938:64ea9d5fbf87

Fix some compile with -Xlint flag errors and warnings
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 02 Jan 2025 19:42:36 +0100 (3 months ago)
parents d416e9b6b3d0
children ff075ed5ce81
comparison
equal deleted inserted replaced
937:d416e9b6b3d0 938:64ea9d5fbf87
47 47
48 final private static int sbInitLen = 5468; // max needed size of sb 48 final private static int sbInitLen = 5468; // max needed size of sb
49 49
50 /** 50 /**
51 * constructor 51 * constructor
52 * @param con_ an active connection
53 * @throws SQLException if a connection or database access error occurs
52 */ 54 */
53 JDBC_API_Tester(Connection con_) throws SQLException { 55 JDBC_API_Tester(Connection con_) throws SQLException {
54 this.con = con_; 56 this.con = con_;
55 sb = new StringBuilder(sbInitLen); 57 sb = new StringBuilder(sbInitLen);
56 58