From 5f00ff095c6090791be8707f7df6512b488aaeaa Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Sat, 2 Feb 2013 12:58:31 +0200 Subject: [PATCH] Remove unused variables. --- redis.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/redis.go b/redis.go index 2059907..c8fe071 100644 --- a/redis.go +++ b/redis.go @@ -164,7 +164,6 @@ func (c *BaseClient) Close() error { type Client struct { *BaseClient - TryEvalShaMinLen int } func NewClient(openConn OpenConnFunc, closeConn CloseConnFunc, initConn InitConnFunc) *Client { @@ -173,7 +172,6 @@ func NewClient(openConn OpenConnFunc, closeConn CloseConnFunc, initConn InitConn ConnPool: NewMultiConnPool(openConn, closeConn, 10), InitConn: initConn, }, - TryEvalShaMinLen: 80, } }