From 9c33571853a55504b1fef9e29fd0225c2f4a81f9 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Sat, 20 Nov 2010 14:23:48 -0600 Subject: [PATCH] removed some unused variables in client --- lib/client.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/client.js b/lib/client.js index 07d2488f..03404c28 100644 --- a/lib/client.js +++ b/lib/client.js @@ -33,12 +33,6 @@ var Client = function(config) { this.connection = config.connection || new Connection({stream: config.stream || new net.Stream()}); this.queryQueue = []; this.password = config.password || defaults.password; - - //internal references only declared here for clarity - this.lastBuffer = false; - this.lastOffset = 0; - this.buffer = null; - this.offset = null; this.encoding = 'utf8'; };