summaryrefslogtreecommitdiff
path: root/lib/_http_incoming.js
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2016-02-15 04:51:05 -0500
committerJames M Snell <jasnell@gmail.com>2016-02-15 07:52:21 -0800
commitfab240a886b69ef9fa78573fc210c15cfe0018f0 (patch)
tree790d559dca738f1d666401f026832069a51a47d1 /lib/_http_incoming.js
parent0223de6ba57c8dcac7680ebf62a9ee6e2c037b42 (diff)
downloadandroid-node-v8-fab240a886b69ef9fa78573fc210c15cfe0018f0.tar.gz
android-node-v8-fab240a886b69ef9fa78573fc210c15cfe0018f0.tar.bz2
android-node-v8-fab240a886b69ef9fa78573fc210c15cfe0018f0.zip
http: remove old, confusing comment
The comment refers to a property (called `_pendings`) that no longer exists. PR-URL: https://github.com/nodejs/node/pull/5233 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'lib/_http_incoming.js')
-rw-r--r--lib/_http_incoming.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/_http_incoming.js b/lib/_http_incoming.js
index 581f62f129..6e66ae6d42 100644
--- a/lib/_http_incoming.js
+++ b/lib/_http_incoming.js
@@ -20,10 +20,6 @@ exports.readStop = readStop;
function IncomingMessage(socket) {
Stream.Readable.call(this);
- // XXX This implementation is kind of all over the place
- // When the parser emits body chunks, they go in this list.
- // _read() pulls them out, and when it finds EOF, it ends.
-
this.socket = socket;
this.connection = socket;