summaryrefslogtreecommitdiffstats
path: root/devtools/shared/commands/resource/legacy-listeners/thread-states.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/shared/commands/resource/legacy-listeners/thread-states.js')
-rw-r--r--devtools/shared/commands/resource/legacy-listeners/thread-states.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/shared/commands/resource/legacy-listeners/thread-states.js b/devtools/shared/commands/resource/legacy-listeners/thread-states.js
index 42c922072a..b24bdfa8cc 100644
--- a/devtools/shared/commands/resource/legacy-listeners/thread-states.js
+++ b/devtools/shared/commands/resource/legacy-listeners/thread-states.js
@@ -56,7 +56,7 @@ module.exports = async function ({ targetCommand, targetFront, onAvailable }) {
};
threadFront.on("paused", onPausedPacket);
- threadFront.on("resumed", packet => {
+ threadFront.on("resumed", () => {
// NOTE: the client suppresses resumed events while interrupted
// to prevent unintentional behavior.
// see [client docs](devtools/client/debugger/src/client/README.md#interrupted) for more information.