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

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

Issue 29345540: Issue 4030 - Move JNI bindings into separate library project (Closed)
Patch Set: Changeset in adblockplusandroid repo Created July 22, 2016, 12:10 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/AndroidUpdateCheckDoneCallback.java
diff --git a/src/org/adblockplus/android/AndroidUpdateCheckDoneCallback.java b/src/org/adblockplus/android/AndroidUpdateCheckDoneCallback.java
index 8e5e285be46c215a4e1f274c708282cb3af59429..c4bf3b91c39d9bc5b982f9e90e7f0fb922ac9c31 100644
--- a/src/org/adblockplus/android/AndroidUpdateCheckDoneCallback.java
+++ b/src/org/adblockplus/android/AndroidUpdateCheckDoneCallback.java
@@ -40,6 +40,6 @@ public class AndroidUpdateCheckDoneCallback extends UpdateCheckDoneCallback
if (StringUtils.isEmpty(error))
return;
Log.e(TAG, "Update check failed: " + error);
- Utils.showUpdateNotification(this.context, null, error);
+ AppUtils.showUpdateNotification(this.context, null, error);
}
}

Powered by Google App Engine
This is Rietveld