diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 51c8617e..a10c5f19 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -372,7 +372,6 @@ const Dactyl = Module("dactyl", { focus: function focus(elem, flags) { flags = flags || services.focus.FLAG_BYMOUSE; - util.dumpStack(); try { if (elem instanceof Document) elem = elem.defaultView; diff --git a/common/content/modes.js b/common/content/modes.js index 715d4b0e..c59e85b6 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -286,7 +286,6 @@ const Modes = Module("modes", { }, push: function push(mainMode, extendedMode, params) { - util.dumpStack(); this.set(mainMode, extendedMode, params, { push: this.topOfStack }); },