diff --git a/lib/_http_common.js b/lib/_http_common.js index f34396ba8a8..c8998f4d85a 100644 --- a/lib/_http_common.js +++ b/lib/_http_common.js @@ -159,11 +159,6 @@ const parsers = new FreeList('parsers', 1000, function() { parser.incoming = null; parser.outgoing = null; - // Only called in the slow case where slow means - // that the request headers were either fragmented - // across multiple TCP packets or too large to be - // processed in a single run. This method is also - // called to process trailing HTTP headers. parser[kOnHeaders] = parserOnHeaders; parser[kOnHeadersComplete] = parserOnHeadersComplete; parser[kOnBody] = parserOnBody;