From a3604cf23368e5b6ab3ead44bedfcd4ba0472f53 Mon Sep 17 00:00:00 2001 From: Micheil Smith Date: Tue, 12 Oct 2010 10:04:18 +1100 Subject: [PATCH] Removed deprecated methods from lib/net.js --- lib/net.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/net.js b/lib/net.js index 234285e03d..c233ffbfeb 100644 --- a/lib/net.js +++ b/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;