summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/remote-debugging/adb/adb-running-checker.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/shared/remote-debugging/adb/adb-running-checker.js')
-rw-r--r--devtools/client/shared/remote-debugging/adb/adb-running-checker.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/client/shared/remote-debugging/adb/adb-running-checker.js b/devtools/client/shared/remote-debugging/adb/adb-running-checker.js
index 7f952ca39b..5660e3ddc7 100644
--- a/devtools/client/shared/remote-debugging/adb/adb-running-checker.js
+++ b/devtools/client/shared/remote-debugging/adb/adb-running-checker.js
@@ -64,18 +64,18 @@ exports.check = async function check() {
};
const setupSocket = function () {
- socket.s.onerror = function (event) {
+ socket.s.onerror = function () {
dumpn("running checker onerror");
finish(false);
};
- socket.s.onopen = function (event) {
+ socket.s.onopen = function () {
dumpn("running checker onopen");
state = "start";
runFSM();
};
- socket.s.onclose = function (event) {
+ socket.s.onclose = function () {
dumpn("running checker onclose");
};