From 5e3e8f66fbc5e968fe6047023f6e1b0908eb5de9 Mon Sep 17 00:00:00 2001 From: cketti Date: Tue, 15 Jun 2010 13:18:43 +0000 Subject: [PATCH] Backported r1807 (use locale independent date formatter) to 2.8 branch. --- src/com/fsck/k9/mail/store/ImapStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/mail/store/ImapStore.java b/src/com/fsck/k9/mail/store/ImapStore.java index 01ca24cc2..5fac367b9 100644 --- a/src/com/fsck/k9/mail/store/ImapStore.java +++ b/src/com/fsck/k9/mail/store/ImapStore.java @@ -93,7 +93,7 @@ public class ImapStore extends Store private volatile String mCombinedPrefix = null; private volatile String mPathDelimeter = null; - private static final SimpleDateFormat RFC3501_DATE = new SimpleDateFormat("dd-MMM-yyyy"); + private static final SimpleDateFormat RFC3501_DATE = new SimpleDateFormat("dd-MMM-yyyy", Locale.US); private LinkedList mConnections = new LinkedList();