From c9eeff6fc2517e2f3f4fca064194f0458531d355 Mon Sep 17 00:00:00 2001 From: David Fifield Date: Mon, 18 Jan 2016 22:39:18 -0800 Subject: [PATCH] Remove unused notImplemented error. --- client/snowflake.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/snowflake.go b/client/snowflake.go index da609b3..6bf6fe5 100644 --- a/client/snowflake.go +++ b/client/snowflake.go @@ -31,8 +31,6 @@ const ( var ptInfo pt.ClientInfo var logFile *os.File -var notImplemented = fmt.Errorf("not implemented") - // When a connection handler starts, +1 is written to this channel; when it // ends, -1 is written. var handlerChan = make(chan int)