Skip to content

Commit

Permalink
Remove commented unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
ndepomereu committed Aug 12, 2024
1 parent e1b46d3 commit 5eb9acb
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions src/main/java/com/aceql/jdbc/commons/ConnectionInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,41 +95,6 @@ public class ConnectionInfo {
this.retryIntervalMs = connectionInfoHolder.getRetryIntervalMs();
}

// /**
// * Package protected constructor, Driver users can not instantiate the class.
// *
// * @param url
// * @param database
// * @param authentication
// * @param passwordIsSessionId
// * @param proxy
// * @param proxyAuthentication
// * @param connectTimeout
// * @param readTimeout
// * @param gzipResult
// * @param resultSetMetaDataPolicy
// * @param requestProperties
// * @param clobReadCharset
// * @param clobWriteCharset
// */
// ConnectionInfo(String url, String database, PasswordAuthentication authentication, boolean passwordIsSessionId,
// Proxy proxy, PasswordAuthentication proxyAuthentication, int connectTimeout, int readTimeout,
// boolean gzipResult, ResultSetMetaDataPolicy resultSetMetaDataPolicy, Map<String, String> requestProperties,
// String clobReadCharset, String clobWriteCharset) {
// this.url = url;
// this.database = database;
// this.authentication = authentication;
// this.passwordIsSessionId = passwordIsSessionId;
// this.proxy = proxy;
// this.proxyAuthentication = proxyAuthentication;
// this.connectTimeout = connectTimeout;
// this.readTimeout = readTimeout;
// this.gzipResult = gzipResult;
// this.resultSetMetaDataPolicy = resultSetMetaDataPolicy;
// this.requestProperties = requestProperties;
// this.clobReadCharset = clobReadCharset;
// this.clobWriteCharset = clobWriteCharset;
// }

/**
* Gets the URL of the remote database
Expand Down

0 comments on commit 5eb9acb

Please sign in to comment.