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.
  • Loading branch information
mr-spd committed Mar 13, 2017
1 parent bd07c8f commit 068c8b4
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 @@ -108,7 +108,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 068c8b4

Please sign in to comment.