Skip to content

Commit

Permalink
http: remove unused parameter in _read of ImcomingMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayase-252 committed Feb 8, 2021
1 parent 7e6bb66 commit 00ec72b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_http_incoming.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ IncomingMessage.prototype.setTimeout = function setTimeout(msecs, callback) {
};


IncomingMessage.prototype._read = function _read(n) {
IncomingMessage.prototype._read = function _read() {
if (!this._consuming) {
this._readableState.readingMore = false;
this._consuming = true;
Expand Down

0 comments on commit 00ec72b

Please sign in to comment.