We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd9728f commit 07a1cf1Copy full SHA for 07a1cf1
src/chrome/content/code/HTTPSRules.js
@@ -575,18 +575,6 @@ const HTTPSRules = {
575
intoList.push(fromList[i]);
576
},
577
578
- loadAllRulesets: function() {
579
- for (var host in this.targets) {
580
- var ruleset_ids = this.targets[host];
581
- for (var i = 0; i < ruleset_ids.length; i++) {
582
- var id = ruleset_ids[i];
583
- if (!this.rulesetsByID[id]) {
584
- this.loadRulesetById(id);
585
- }
586
587
588
- },
589
-
590
// Load a ruleset by numeric id, e.g. 234
591
// NOTE: This call runs synchronously, which can lock up the browser UI. Is
592
// there any way to fix that, given that we need to run blocking in the request
0 commit comments