Remove unused variables.

This commit is contained in:
Vladimir Mihailenco 2013-02-02 12:58:31 +02:00
parent f64761880b
commit 5f00ff095c
1 changed files with 0 additions and 2 deletions

View File

@ -164,7 +164,6 @@ func (c *BaseClient) Close() error {
type Client struct { type Client struct {
*BaseClient *BaseClient
TryEvalShaMinLen int
} }
func NewClient(openConn OpenConnFunc, closeConn CloseConnFunc, initConn InitConnFunc) *Client { 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), ConnPool: NewMultiConnPool(openConn, closeConn, 10),
InitConn: initConn, InitConn: initConn,
}, },
TryEvalShaMinLen: 80,
} }
} }