From 3ea41e6972e7b0d5dd44216388969ff30180ef5a Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sun, 4 Jun 2017 21:22:34 -0500 Subject: [PATCH] Remove unused global error --- conn.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/conn.go b/conn.go index 20a56807..75b8bfb3 100644 --- a/conn.go +++ b/conn.go @@ -181,9 +181,6 @@ func (ident Identifier) Sanitize() string { // ErrNoRows occurs when rows are expected but none are returned. var ErrNoRows = errors.New("no rows in result set") -// ErrNotificationTimeout occurs when WaitForNotification times out. -var ErrNotificationTimeout = errors.New("notification timeout") - // ErrDeadConn occurs on an attempt to use a dead connection var ErrDeadConn = errors.New("conn is dead")