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

Unified Diff: adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Subscription.java

Issue 29453623: Noissue - Project cleanup (Closed)
Patch Set: Created June 1, 2017, 1:45 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 | « adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/EngineService.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Subscription.java
===================================================================
--- a/adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Subscription.java
+++ b/adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Subscription.java
@@ -49,24 +49,22 @@ import android.util.Log;
/**
* Simple subscription representation.
*/
final class Subscription
{
private static final String TAG = Subscription.class.getSimpleName();
public static final String KEY_TITLE = "title";
public static final String KEY_VERSION = "version";
- public static final String KEY_FORCED_TITLE = "_title";
public static final String KEY_HTTP_ETAG = "_etag";
public static final String KEY_HTTP_LAST_MODIFIED = "_last_modified";
public static final String KEY_UPDATE_TIMESTAMP = "_update_timestamp";
public static final String KEY_TRIED_UPDATE_TIMESTAMP = "_tried_update_timestamp";
public static final String KEY_DOWNLOAD_COUNT = "_download_count";
public static final String KEY_ENABLED = "_enabled";
- public static final String KEY_HAS_FILTERS = "_has_filters";
public static final String KEY_META_HASH = "_meta_hash";
public static final long MINIMAL_DOWNLOAD_INTERVAL = Engine.MILLIS_PER_HOUR / 4;
public static final long DOWNLOAD_RETRY_INTERVAL = Engine.MILLIS_PER_HOUR;
private static final HashSet<String> ALLOWED_META_KEYS = new HashSet<>();
private static final Locale LOCALE_EN = Locale.ENGLISH;
« no previous file with comments | « adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/EngineService.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld