From de40fea10012a2f5c1c78f620b7b3c71027c97a8 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 20 Apr 2019 12:00:07 -0500 Subject: [PATCH] Remove unused variables --- conn.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/conn.go b/conn.go index 67ca50bc..4e681645 100644 --- a/conn.go +++ b/conn.go @@ -41,17 +41,14 @@ type Conn struct { logger Logger logLevel LogLevel fp *fastpath - poolResetCount int preallocatedRows []connRows causeOfDeath error lastStmtSent bool - // context support - ctxInProgress bool - doneChan chan struct{} - closedChan chan error + doneChan chan struct{} + closedChan chan error ConnInfo *pgtype.ConnInfo }