Skip to content

Commit

Permalink
removed debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird committed Nov 26, 2020
1 parent cedceaf commit bd428b2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/com/microsoft/sqlserver/jdbc/IOBuffer.java
Original file line number Diff line number Diff line change
Expand Up @@ -2054,12 +2054,8 @@ else if (null != (trustStoreFileName = System.getProperty("javax.net.ssl.trustSt

final int read(byte[] data, int offset, int length) throws SQLServerException {
try {
// System.out.println("socket timeout:"+ tcpSocket.getSoTimeout());
// tcpSocket.setSoTimeout(10000);

return inputStream.read(data, offset, length);
} catch (SocketException e) {
System.out.println("SocketTimeoutException:" + e.getMessage());
return 0; // Keep the compiler happy.
} catch (IOException e) {
if (logger.isLoggable(Level.FINE))
Expand Down

0 comments on commit bd428b2

Please sign in to comment.