summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteve Howard <showard@google.com>2010-09-12 19:13:16 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-09-12 19:13:16 -0700
commit13db200521cf8ead0d96173bccd7e141182eeccd (patch)
treec75b281570d7be14daa952b96c4dec9d9bf6dcd2 /src
parent71e7fda9135a0915af1fd419d07ebf85ad09beb4 (diff)
parentcae0c3610fce7336c06377698e22878d110b19d2 (diff)
downloadandroid_packages_providers_DownloadProvider-13db200521cf8ead0d96173bccd7e141182eeccd.tar.gz
android_packages_providers_DownloadProvider-13db200521cf8ead0d96173bccd7e141182eeccd.tar.bz2
android_packages_providers_DownloadProvider-13db200521cf8ead0d96173bccd7e141182eeccd.zip
Merge "Fix silly bug with completed notifications." into gingerbread
Diffstat (limited to 'src')
-rw-r--r--src/com/android/providers/downloads/DownloadNotification.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/providers/downloads/DownloadNotification.java b/src/com/android/providers/downloads/DownloadNotification.java
index 2c30644b..472a5f30 100644
--- a/src/com/android/providers/downloads/DownloadNotification.java
+++ b/src/com/android/providers/downloads/DownloadNotification.java
@@ -22,7 +22,6 @@ import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.provider.Downloads;
-import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;
@@ -212,7 +211,7 @@ class DownloadNotification {
private void updateCompletedNotification(List<DownloadInfo> downloads) {
for (DownloadInfo download : downloads) {
if (!isCompleteAndVisible(download)) {
- return;
+ continue;
}
// Add the notifications
Notification n = new Notification();