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

Unified Diff: src/org/adblockplus/android/AndroidFilterChangeCallback.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/AndroidFilterChangeCallback.java
===================================================================
--- a/src/org/adblockplus/android/AndroidFilterChangeCallback.java
+++ b/src/org/adblockplus/android/AndroidFilterChangeCallback.java
@@ -34,12 +34,12 @@
@Override
public void filterChangeCallback(final String action, final JsValue jsValue)
{
if (action.equals("subscription.lastDownload") || action.equals("subscription.downloadStatus"))
{
final Subscription sub = new Subscription(jsValue);
- Utils.updateSubscriptionStatus(this.context, sub);
+ AppUtils.updateSubscriptionStatus(this.context, sub);
}
}
}

Powered by Google App Engine
This is Rietveld