summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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();