Skip to content

Commit

Permalink
Fix | Moving RequestBoundaryMethodsTest.java to connection package
Browse files Browse the repository at this point in the history
  • Loading branch information
ulvii committed Jun 7, 2018
1 parent 950bf28 commit b215898
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5323,9 +5323,9 @@ public <T> T unwrap(Class<T> iface) throws SQLException {
private boolean originalDisableStatementPooling;
private int originalServerPreparedStatementDiscardThreshold;
private Boolean originalEnablePrepareOnFirstPreparedStatementCall;
private String originalSCatalog = null;
private volatile SQLWarning originalSqlWarnings = null;
private List<Statement> openStatements = null;
private String originalSCatalog;
private volatile SQLWarning originalSqlWarnings;
private List<Statement> openStatements;

protected void beginRequestInternal() throws SQLException {
synchronized (this) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.microsoft.sqlserver.jdbc.requestboundary;
package com.microsoft.sqlserver.jdbc.connection;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
Expand Down

0 comments on commit b215898

Please sign in to comment.