Browse Source

Removed deprecated methods from lib/net.js

v0.7.4-release
Micheil Smith 14 years ago
committed by Ryan Dahl
parent
commit
a3604cf233
  1. 5
      lib/net.js

5
lib/net.js

@ -821,11 +821,6 @@ Stream.prototype.flush = function () {
};
Stream.prototype.send = function () {
throw new Error('send renamed to write');
};
Stream.prototype._writeQueueLast = function () {
return this._writeQueue.length > 0 ? this._writeQueue[this._writeQueue.length-1]
: null;

Loading…
Cancel
Save