From cfe21389fddf66bd42c9c107c2aa90a81a3292a9 Mon Sep 17 00:00:00 2001 From: Brian White Date: Mon, 15 Feb 2016 04:51:05 -0500 Subject: [PATCH] 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 Reviewed-By: James M Snell --- lib/_http_incoming.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/_http_incoming.js b/lib/_http_incoming.js index 581f62f129f120..6e66ae6d42a9c0 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;