1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 04:49:12 +02:00

Remove globals usage from background.js (#3848)

This commit is contained in:
Manish Jethani 2021-08-23 19:58:44 +05:30 committed by GitHub
parent 724a946c79
commit d13294dd39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,6 @@
/******************************************************************************/
import globals from './globals.js';
import logger from './logger.js';
import { FilteringContext } from './filtering-context.js';
@ -337,7 +336,7 @@ const µBlock = { // jshint ignore:line
µBlock.filteringContext = new µBlock.FilteringContext();
globals.µBlock = µBlock;
self.µBlock = µBlock;
/******************************************************************************/