summaryrefslogtreecommitdiffstats
path: root/src/com/android/mail/MailIntentService.java
diff options
context:
space:
mode:
authorAndrew Sapperstein <asapperstein@google.com>2014-03-04 15:51:58 -0800
committerAndrew Sapperstein <asapperstein@google.com>2014-03-04 15:51:58 -0800
commit963c7e4f178037acebddfd13e16fc627ef368c82 (patch)
treebaba07dc288d7126e030e2e14d938419fe141aed /src/com/android/mail/MailIntentService.java
parentf479bd60d01e5e752620bcb946d079c697a543f6 (diff)
downloadandroid_packages_apps_UnifiedEmail-963c7e4f178037acebddfd13e16fc627ef368c82.tar.gz
android_packages_apps_UnifiedEmail-963c7e4f178037acebddfd13e16fc627ef368c82.tar.bz2
android_packages_apps_UnifiedEmail-963c7e4f178037acebddfd13e16fc627ef368c82.zip
RTL - get new BidiFormatter on locale change.
Fixes b/13026665. Change-Id: I5ec05c39113fbc03134d7769e91145ba2aedac61
Diffstat (limited to 'src/com/android/mail/MailIntentService.java')
-rw-r--r--src/com/android/mail/MailIntentService.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/com/android/mail/MailIntentService.java b/src/com/android/mail/MailIntentService.java
index ed555bbaf..bbf21ae31 100644
--- a/src/com/android/mail/MailIntentService.java
+++ b/src/com/android/mail/MailIntentService.java
@@ -15,22 +15,19 @@
*/
package com.android.mail;
-import android.net.Uri;
-
-import com.android.mail.utils.StorageLowState;
-
import android.app.IntentService;
import android.content.Context;
import android.content.Intent;
+import android.net.Uri;
import com.android.mail.analytics.Analytics;
-import com.android.mail.analytics.AnalyticsUtils;
import com.android.mail.providers.Account;
import com.android.mail.providers.Folder;
import com.android.mail.utils.FolderUri;
import com.android.mail.utils.LogTag;
import com.android.mail.utils.LogUtils;
import com.android.mail.utils.NotificationUtils;
+import com.android.mail.utils.StorageLowState;
import com.android.mail.utils.Utils;
/**
@@ -65,7 +62,7 @@ public class MailIntentService extends IntentService {
final String action = intent.getAction();
if (Intent.ACTION_LOCALE_CHANGED.equals(action)) {
- NotificationUtils.cancelAndResendNotifications(this);
+ NotificationUtils.cancelAndResendNotificationsOnLocaleChange(this);
} else if (ACTION_CLEAR_NEW_MAIL_NOTIFICATIONS.equals(action)) {
final Account account = intent.getParcelableExtra(Utils.EXTRA_ACCOUNT);
final Folder folder = intent.getParcelableExtra(Utils.EXTRA_FOLDER);