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

Unified Diff: src/org/adblockplus/android/ABPEngine.java

Issue 29345540: Issue 4030 - Move JNI bindings into separate library project (Closed)
Patch Set: Created June 3, 2016, 1:42 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: src/org/adblockplus/android/ABPEngine.java
===================================================================
--- a/src/org/adblockplus/android/ABPEngine.java
+++ b/src/org/adblockplus/android/ABPEngine.java
@@ -331,17 +331,17 @@
this.filterEngine.forceUpdateCheck(this.updateCheckDoneCallback);
}
public void updateSubscriptionStatus(final String url)
{
final Subscription sub = this.filterEngine.getSubscription(url);
if (sub != null)
{
- Utils.updateSubscriptionStatus(this.context, sub);
+ AppUtils.updateSubscriptionStatus(this.context, sub);
}
}
public FilterEngine getFilterEngine()
{
return this.filterEngine;
}
}

Powered by Google App Engine
This is Rietveld