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: 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/AndroidUpdateCheckDoneCallback.java
===================================================================
--- a/src/org/adblockplus/android/AndroidUpdateCheckDoneCallback.java
+++ b/src/org/adblockplus/android/AndroidUpdateCheckDoneCallback.java
@@ -35,11 +35,11 @@
}
@Override
public void updateCheckDoneCallback(final String error)
{
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