From 7e74898c4a5465484e312fcbe2ac359e2225b5fa Mon Sep 17 00:00:00 2001 From: Jacob Leverich Date: Mon, 4 Mar 2013 14:23:50 -0800 Subject: [PATCH] Remove unused useBinary class variable. --- Connection.cc | 3 +-- Connection.h | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Connection.cc b/Connection.cc index d4fe464..c73ee9c 100644 --- a/Connection.cc +++ b/Connection.cc @@ -135,8 +135,7 @@ void Connection::issue_get(const char* key, double now) { if (read_state != LOADING) stats.tx_bytes += l; } -void Connection::issue_set(const char* key, - const char* value, int length, +void Connection::issue_set(const char* key, const char* value, int length, double now) { Operation op; int l; diff --git a/Connection.h b/Connection.h index 00fe03b..f157db7 100644 --- a/Connection.h +++ b/Connection.h @@ -102,6 +102,4 @@ private: Generator *keysize; KeyGenerator *keygen; Generator *iagen; - - bool useBinary; };