Bug 1771173 - Fix/ignore some duplicate imports caught by the new valid-lazy rule. r=arai

Differential Revision: https://phabricator.services.mozilla.com/D149715
This commit is contained in:
Mark Banner
2022-06-21 20:42:14 +00:00
parent 7d0f9c3e50
commit e731bc0930
3 changed files with 7 additions and 5 deletions

View File

@@ -32,6 +32,9 @@ if (AppConstants.platform == "win") {
"resource://gre/modules/subprocess/subprocess_win.jsm"
);
} else {
// Ignore the "duplicate" definitions here as this are also defined
// in the "win" block above.
// eslint-disable-next-line mozilla/valid-lazy
ChromeUtils.defineModuleGetter(
lazy,
"SubprocessImpl",