From cc77a67745b5653e6d8d4283781e9cf9999e0607 Mon Sep 17 00:00:00 2001 From: brianc Date: Thu, 2 Jun 2011 07:24:42 -0500 Subject: [PATCH] remove double init of variable --- lib/client.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 8febca0e..979c8691 100644 --- a/lib/client.js +++ b/lib/client.js @@ -17,7 +17,6 @@ var Client = function(config) { this.database = config.database || defaults.database; this.port = config.port || defaults.port; this.host = config.host || defaults.host; - this.queryQueue = []; this.connection = config.connection || new Connection({stream: config.stream}); this.queryQueue = []; this.password = config.password || defaults.password;