Skip to content

Commit 5bd1642

Browse files
mr-spdfhinkel
authored andcommitted
lib: remove unused msg parameter in debug_agent
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]>
1 parent db277f0 commit 5bd1642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/_debug_agent.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function Client(agent, socket) {
108108
}
109109
util.inherits(Client, Transform);
110110

111-
Client.prototype.destroy = function destroy(msg) {
111+
Client.prototype.destroy = function destroy() {
112112
this.socket.destroy();
113113

114114
this.emit('close');

0 commit comments

Comments
 (0)