Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/iniParser.js

Issue 30013628: Issue 7029 - Remove subscriptions property of Filter object (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Created Feb. 24, 2019, 1:30 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/iniParser.js
===================================================================
--- a/lib/iniParser.js
+++ b/lib/iniParser.js
@@ -102,20 +102,17 @@
case "subscription filters":
if (this.subscriptions.length)
{
let currentSubscription = this.subscriptions[
this.subscriptions.length - 1
];
for (let text of this._curObj)
- {
currentSubscription.addFilterText(text);
- Filter.fromText(text).addSubscription(currentSubscription);
Manish Jethani 2019/03/30 21:01:44 A side effect of this change is that `Filter` obje
hub 2019/04/04 03:48:15 In this patch or in a future one?
Manish Jethani 2019/04/04 05:44:20 In a future one, because it is an enhancement on t
hub 2019/04/04 20:54:44 Acknowledged.
- }
}
break;
}
}
if (line === null)
return;

Powered by Google App Engine
This is Rietveld