Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove unnecessary semi-colon
  • Loading branch information
ahoym committed Sep 9, 2015
commit 1f20e3057799c1061085655a66d0e034e7517302
2 changes: 1 addition & 1 deletion lib/_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ ClientRequest.prototype._deferToConnect = function(method, arguments_, cb) {
self.socket[method].apply(self.socket, arguments_);
if (typeof cb === 'function')
cb();
};
}
var onSocket = function() {
if (self.socket.writable) {
callSocketMethod();
Expand Down