Closed
Bug 1537728
Opened 7 years ago
Closed 7 years ago
Simplify shouldCheck variable declaration in BrowserGlue._checkForDefaultBrowser
Categories
(Firefox :: General, enhancement, P3)
Firefox
General
Tracking
()
RESOLVED
FIXED
Firefox 68
| Tracking | Status | |
|---|---|---|
| firefox68 | --- | fixed |
People
(Reporter: dao, Assigned: aqadri, Mentored)
Details
(Keywords: good-first-bug, Whiteboard: [lang=js])
Attachments
(1 file)
This:
let shouldCheck = AppConstants.DEBUG ? false :
ShellService.shouldCheckDefaultBrowser;
... can be simplified to:
let shouldCheck = !AppConstants.DEBUG && ShellService.shouldCheckDefaultBrowser;
| Assignee | ||
Comment 1•7 years ago
|
||
Hi Dão, Can I please work on this?
| Reporter | ||
Comment 2•7 years ago
|
||
(In reply to Syeda Asra Arshia Qadri [:aqadri] from comment #1)
Hi Dão, Can I please work on this?
Go ahead.
| Assignee | ||
Updated•7 years ago
|
Assignee: nobody → asra.qadri
| Assignee | ||
Comment 3•7 years ago
|
||
Comment 4•7 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox68:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 68
You need to log in
before you can comment on or make changes to this bug.
Description
•