removed some unused variables in client

This commit is contained in:
Brian Carlson 2010-11-20 14:23:48 -06:00
parent de5438e6f5
commit 9c33571853

View File

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