Skip to content

Commit

Permalink
http: Remove an unnecessary assignment
Browse files Browse the repository at this point in the history
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: #4323
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Brian White <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
gigabo authored and Myles Borins committed Jan 19, 2016
1 parent 8ce6843 commit 3ff2373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_http_outgoing.js
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,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) {
Expand Down

0 comments on commit 3ff2373

Please sign in to comment.