Skip to content

Commit

Permalink
lib: remove unused msg parameter in debug_agent
Browse files Browse the repository at this point in the history
Removed the msg parameter in the Client function
of _debug_agent.js, because it is unused.

PR-URL: #11833
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Daniel Bevenius <[email protected]>
Reviewed-By: Gibson Fahnestock <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Yuta Hiroto <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
Reviewed-By: Jackson Tian <[email protected]>
  • Loading branch information
mr-spd authored and MylesBorins committed Apr 19, 2017
1 parent 9dd918b commit f8426d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_debug_agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function Client(agent, socket) {
}
util.inherits(Client, Transform);

Client.prototype.destroy = function destroy(msg) {
Client.prototype.destroy = function destroy() {
this.socket.destroy();

this.emit('close');
Expand Down

0 comments on commit f8426d9

Please sign in to comment.