summaryrefslogtreecommitdiffstats
path: root/src/com/android/mail/MailIntentService.java
diff options
context:
space:
mode:
authorScott Kennedy <skennedy@google.com>2013-05-05 15:06:52 -0700
committerScott Kennedy <skennedy@google.com>2013-05-05 15:06:52 -0700
commitf78c53b07082f7b9ac836819981d07b51eb93bf4 (patch)
tree8177164dac7f9941558bd4f80701bad543db38d4 /src/com/android/mail/MailIntentService.java
parent193e05a8c38b87c400ac594b53b54eb211d35602 (diff)
downloadandroid_packages_apps_UnifiedEmail-f78c53b07082f7b9ac836819981d07b51eb93bf4.tar.gz
android_packages_apps_UnifiedEmail-f78c53b07082f7b9ac836819981d07b51eb93bf4.tar.bz2
android_packages_apps_UnifiedEmail-f78c53b07082f7b9ac836819981d07b51eb93bf4.zip
Remove MARK_SEEN action
This was never being acknowledged, and the only place that was using it shouldn't have been using it. Bug: 8816083 Change-Id: I4a4702b76bf006dd471f3e80f4032736aab42a5a
Diffstat (limited to 'src/com/android/mail/MailIntentService.java')
-rw-r--r--src/com/android/mail/MailIntentService.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/mail/MailIntentService.java b/src/com/android/mail/MailIntentService.java
index 7f04392b8..065e5fd7e 100644
--- a/src/com/android/mail/MailIntentService.java
+++ b/src/com/android/mail/MailIntentService.java
@@ -39,7 +39,6 @@ public class MailIntentService extends IntentService {
"com.android.mail.action.RESEND_NOTIFICATIONS";
public static final String ACTION_CLEAR_NEW_MAIL_NOTIFICATIONS =
"com.android.mail.action.CLEAR_NEW_MAIL_NOTIFICATIONS";
- public static final String ACTION_MARK_SEEN = "com.android.mail.action.MARK_SEEN";
public static final String ACTION_BACKUP_DATA_CHANGED =
"com.android.mail.action.BACKUP_DATA_CHANGED";
@@ -73,10 +72,6 @@ public class MailIntentService extends IntentService {
final Uri folderUri = intent.getParcelableExtra(Utils.EXTRA_FOLDER_URI);
NotificationUtils.resendNotifications(this, false, accountUri, folderUri);
- } else if (ACTION_MARK_SEEN.equals(action)) {
- final Folder folder = intent.getParcelableExtra(Utils.EXTRA_FOLDER);
-
- NotificationUtils.markSeen(this, folder);
} else if (Intent.ACTION_DEVICE_STORAGE_LOW.equals(action)) {
// The storage_low state is recorded centrally even though
// no handler might be present to change application state