1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-02 00:25:10 -04:00

Fixes Issue 1763

Patch from jca02266 to use locale independent date formatter.
This commit is contained in:
Daniel Applebaum 2010-06-11 12:56:01 +00:00
parent dcd83f243b
commit 8cb7f8f317

View File

@ -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<ImapConnection> mConnections =
new LinkedList<ImapConnection>();