Bug 1500000 - [devtools] Remove now-unused DevToolsClient.release method. r=devtools-reviewers,nchevobbe

This is no longer used, not even in tests.

Differential Revision: https://phabricator.services.mozilla.com/D198808
This commit is contained in:
Alexandre Poirot 2024-01-17 16:40:12 +00:00
parent 8e1906638e
commit e9a10c241b

View file

@ -141,19 +141,6 @@ DevToolsClient.prototype = {
return this._closePromise; return this._closePromise;
}, },
/**
* Release an object actor.
*
* @param string actor
* The actor ID to send the request to.
*/
release(to) {
return this.request({
to,
type: "release",
});
},
/** /**
* Send a request to the debugging server. * Send a request to the debugging server.
* *