Skip to content
Closed
Changes from all commits
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
lib: remove unused msg parameter in debug_agent
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
commit 068c8b45ca53fd323281ab3922cd9bde883ae1b9
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