summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteve Howard <showard@google.com>2010-09-12 19:15:22 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-12 19:15:22 -0700
commitd5c0120af6eae66f15e83ef61eb61ea19542b097 (patch)
tree79830916327d5e1802583554219ac7ead0cc5289 /src
parent7fa71b17d1bcaceb4688cb4b0e6982d1db4a0538 (diff)
parent13db200521cf8ead0d96173bccd7e141182eeccd (diff)
downloadandroid_packages_providers_DownloadProvider-d5c0120af6eae66f15e83ef61eb61ea19542b097.tar.gz
android_packages_providers_DownloadProvider-d5c0120af6eae66f15e83ef61eb61ea19542b097.tar.bz2
android_packages_providers_DownloadProvider-d5c0120af6eae66f15e83ef61eb61ea19542b097.zip
am 13db2005: Merge "Fix silly bug with completed notifications." into gingerbread
Merge commit '13db200521cf8ead0d96173bccd7e141182eeccd' into gingerbread-plus-aosp * commit '13db200521cf8ead0d96173bccd7e141182eeccd': Fix silly bug with completed notifications.
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();