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

Unified Diff: lib/filterStorage.js

Issue 29556638: Issue 5762 - Use relative require paths (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Don't use a module path for the modules provided by the "client" Created Jan. 4, 2018, 9 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
« no previous file with comments | « lib/filterNotifier.js ('k') | lib/matcher.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/filterStorage.js
===================================================================
--- a/lib/filterStorage.js
+++ b/lib/filterStorage.js
@@ -19,20 +19,20 @@
/**
* @fileOverview FilterStorage class responsible for managing user's
* subscriptions and filters.
*/
const {IO} = require("io");
const {Prefs} = require("prefs");
-const {Filter, ActiveFilter} = require("filterClasses");
+const {Filter, ActiveFilter} = require("./filterClasses");
const {Subscription, SpecialSubscription,
- ExternalSubscription} = require("subscriptionClasses");
-const {FilterNotifier} = require("filterNotifier");
+ ExternalSubscription} = require("./subscriptionClasses");
+const {FilterNotifier} = require("./filterNotifier");
/**
* Version number of the filter storage file format.
* @type {number}
*/
let formatVersion = 5;
/**
« no previous file with comments | « lib/filterNotifier.js ('k') | lib/matcher.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld