net: remove Socket.prototoype.read
Unused since 34b535f4caba366789d949211e4369b1e1d01152. PR-URL: https://github.com/nodejs/node/pull/18568 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
d3569b623c
commit
ef78a1e584
@ -397,15 +397,6 @@ function writeAfterFIN(chunk, encoding, cb) {
|
||||
}
|
||||
}
|
||||
|
||||
Socket.prototype.read = function(n) {
|
||||
if (n === 0)
|
||||
return stream.Readable.prototype.read.call(this, n);
|
||||
|
||||
this.read = stream.Readable.prototype.read;
|
||||
this._consuming = true;
|
||||
return this.read(n);
|
||||
};
|
||||
|
||||
Socket.prototype.setTimeout = function(msecs, callback) {
|
||||
// Type checking identical to timers.enroll()
|
||||
msecs = validateTimerDuration(msecs);
|
||||
|
Loading…
x
Reference in New Issue
Block a user