Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit ef35a44

Browse files
nchevobbejasonLaster
authored andcommitted
Backport changes made in mozilla-central for Bug 1382581 (#5705)
1 parent 3cad5d6 commit ef35a44

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
global:
1111
- DISPLAY=':99.0'
1212
- YARN_VERSION='0.24.5'
13-
- MC_COMMIT='00ef5405cd7e' # https://hg.mozilla.org/mozilla-central/shortlog
13+
- MC_COMMIT='97160a734959' # https://hg.mozilla.org/mozilla-central/shortlog
1414

1515
notifications:
1616
slack:

src/actions/navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import type { ThunkArgs } from "./types";
3232
* @memberof actions/navigation
3333
* @static
3434
*/
35-
export function willNavigate(_: any, event: Object) {
35+
export function willNavigate(event: Object) {
3636
return async function({ dispatch, getState, client, sourceMaps }: ThunkArgs) {
3737
await sourceMaps.clearSourceMaps();
3838
clearWasmStates();

src/test/mochitest/browser_dbg-chrome-create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let gProcess = undefined;
2424
function initChromeDebugger() {
2525
info("Initializing a chrome debugger process.");
2626
return new Promise(resolve => {
27-
BrowserToolboxProcess.init(onClose, (event, _process) => {
27+
BrowserToolboxProcess.init(onClose, _process => {
2828
info("Browser toolbox process started successfully.");
2929
resolve(_process);
3030
});

0 commit comments

Comments
 (0)