 Issue 29907589:
  Issue 7054 -  Update the adblockpluscore dependency to 5cb695da5a40, adblockplusui to f86abf2efdfd  (Closed)
    
  
    Issue 29907589:
  Issue 7054 -  Update the adblockpluscore dependency to 5cb695da5a40, adblockplusui to f86abf2efdfd  (Closed) 
  | Left: | ||
| Right: | 
| OLD | NEW | 
|---|---|
| 1 /* | 1 /* | 
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH | 
| 4 * | 4 * | 
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify | 
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as | 
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. | 
| 8 * | 8 * | 
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, | 
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. | 
| 13 * | 13 * | 
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License | 
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| 16 */ | 16 */ | 
| 17 | 17 | 
| 18 "use strict"; | 18 "use strict"; | 
| 19 | 19 | 
| 20 const {FilterStorage} = require("../adblockpluscore/lib/filterStorage"); | 20 const {filterStorage} = require("../adblockpluscore/lib/filterStorage"); | 
| 21 const {Subscription} = require("../adblockpluscore/lib/subscriptionClasses"); | 21 const {Subscription} = require("../adblockpluscore/lib/subscriptionClasses"); | 
| 22 const {Filter} = require("../adblockpluscore/lib/filterClasses"); | 22 const {Filter} = require("../adblockpluscore/lib/filterClasses"); | 
| 23 const {defaultMatcher} = require("../adblockpluscore/lib/matcher"); | 23 const {defaultMatcher} = require("../adblockpluscore/lib/matcher"); | 
| 24 const {ElemHide} = require("../adblockpluscore/lib/elemHide"); | 24 const {ElemHide} = require("../adblockpluscore/lib/elemHide"); | 
| 25 const {Prefs} = require("../lib/prefs"); | 25 const {Prefs} = require("../lib/prefs"); | 
| 26 | 26 | 
| 27 function prepareFilterComponents(keepListeners) | 27 function prepareFilterComponents(keepListeners) | 
| 28 { | 28 { | 
| 29 FilterStorage.subscriptions = []; | 29 filterStorage.subscriptions = []; | 
| 30 FilterStorage.knownSubscriptions = Object.create(null); | 30 filterStorage.knownSubscriptions = Object.create(null); | 
| 31 Subscription.knownSubscriptions = Object.create(null); | 31 Subscription.knownSubscriptions = Object.create(null); | 
| 32 Filter.knownFilters = Object.create(null); | 32 Filter.knownFilters = Object.create(null); | 
| 
Jon Sonesen
2019/01/04 00:36:28
Is this code being used to re-initialize the objec
 
Jon Sonesen
2019/01/04 01:12:21
Nevermind I goofed and shouldn't be messing with t
 
kzar
2019/01/04 11:41:18
It seems to me that this code isn't actually used
 
kzar
2019/01/04 15:48:20
(I recommend removing all your changes to this fil
 | |
| 33 | 33 | 
| 34 defaultMatcher.clear(); | 34 defaultMatcher.clear(); | 
| 35 ElemHide.clear(); | 35 ElemHide.clear(); | 
| 36 } | 36 } | 
| 37 | 37 | 
| 38 function restoreFilterComponents() | 38 function restoreFilterComponents() | 
| 39 { | 39 { | 
| 40 } | 40 } | 
| 41 | 41 | 
| 42 function executeFirstRunActions() | 42 function executeFirstRunActions() | 
| 43 { | 43 { | 
| 44 } | 44 } | 
| OLD | NEW |