Skip to content

Commit 9cc712c

Browse files
mr-spditaloacasas
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 77c69f7 commit 9cc712c

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
@@ -107,7 +107,7 @@ function Client(agent, socket) {
107107
}
108108
util.inherits(Client, Transform);
109109

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

113113
this.emit('close');

0 commit comments

Comments
 (0)