remove double init of variable

This commit is contained in:
brianc 2011-06-02 07:24:42 -05:00
parent 0ea77f475b
commit cc77a67745

View File

@ -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;