Browse Source

lint: fix _http_client.js after v0.10 merge

v0.11.5-release
Timothy J Fontaine 11 years ago
parent
commit
c898704db1
  1. 2
      lib/_http_client.js

2
lib/_http_client.js

@ -145,7 +145,7 @@ ClientRequest.prototype._implicitHeader = function() {
}; };
ClientRequest.prototype.abort = function() { ClientRequest.prototype.abort = function() {
// If we're aborting, we don't care about any more response data. // If we're aborting, we don't care about any more response data.
if (this.res) if (this.res)
this.res._dump(); this.res._dump();
else else

Loading…
Cancel
Save