Skip to content

Commit

Permalink
Merge pull request #201 from v-xiangs/non-serializable-SQLServerConne…
Browse files Browse the repository at this point in the history
…ctionPoolProxy

remove java.io.Serializable interface from SQLServerConnectionPoolProxy.
  • Loading branch information
v-nisidh authored Mar 21, 2017
2 parents 7d4d62b + 4832373 commit b352610
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
* details.
*/

class SQLServerConnectionPoolProxy implements ISQLServerConnection, java.io.Serializable {
private static final long serialVersionUID = -6412542417798843534L;
class SQLServerConnectionPoolProxy implements ISQLServerConnection {
private SQLServerConnection wrappedConnection;
private boolean bIsOpen;
static private final AtomicInteger baseConnectionID = new AtomicInteger(0); // connection id dispenser
Expand Down

0 comments on commit b352610

Please sign in to comment.