Browse Source

http: Remove an unnecessary assignment

This just removes an assignment to `ret` of a value that's not used before
it's overwritten.  Immediately following the assigment is an `if/else` in
which both branches assign to `ret` without using it.

PR-URL: https://github.com/nodejs/node/pull/4323
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
v5.x
Bo Borgerson 9 years ago
committed by Jeremiah Senkpiel
parent
commit
b841967103
  1. 2
      lib/_http_outgoing.js

2
lib/_http_outgoing.js

@ -572,7 +572,7 @@ OutgoingMessage.prototype.end = function(data, encoding, callback) {
var ret;
if (data) {
// Normal body write.
ret = this.write(data, encoding);
this.write(data, encoding);
}
if (this._hasBody && this.chunkedEncoding) {

Loading…
Cancel
Save