Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/microsoft/sqlserver/jdbc/IOBuffer.java
Original file line number Diff line number Diff line change
Expand Up @@ -2226,7 +2226,7 @@ enum Result {

// no of threads that finished their socket connection
// attempts and notified socketFinder about their result
private volatile int noOfThreadsThatNotified = 0;
private int noOfThreadsThatNotified = 0;

// If a valid connected socket is found, this value would be non-null,
// else this would be null
Expand Down Expand Up @@ -3071,7 +3071,7 @@ void setDataLoggable(boolean value) {
private byte valueBytes[] = new byte[256];

// Monotonically increasing packet number associated with the current message
private volatile int packetNum = 0;
private int packetNum = 0;

// Bytes for sending decimal/numeric data
private final static int BYTES4 = 4;
Expand Down