Removed unneeded buffer declarations.

This commit is contained in:
Guillermo Rauch
2011-06-30 18:58:06 -03:00
parent a3ba4e2c10
commit f302744fec

View File

@@ -28,7 +28,6 @@ function Transport (mng, data, req) {
this.id = data.id;
this.disconnected = false;
this.drained = true;
this.buffer = [];
this.handleRequest(req);
};
@@ -481,7 +480,6 @@ Transport.prototype.discard = function () {
this.discarded = true;
this.clearTimeouts();
this.clearHandlers();
this.buffer = [];
return this;
};