Skip to content

Commit 8068d3f

Browse files
mr-spdMylesBorins
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 9ad91d7 commit 8068d3f

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
@@ -103,7 +103,7 @@ function Client(agent, socket) {
103103
}
104104
util.inherits(Client, Transform);
105105

106-
Client.prototype.destroy = function destroy(msg) {
106+
Client.prototype.destroy = function destroy() {
107107
this.socket.destroy();
108108

109109
this.emit('close');

0 commit comments

Comments
 (0)