Move RFC3501_DATE constant to ImapFolder

This commit is contained in:
cketti 2016-02-03 21:51:42 +01:00
parent 2f9a427b22
commit e562c4bd5e
2 changed files with 4 additions and 7 deletions

View file

@ -4,6 +4,7 @@ package com.fsck.k9.mail.store.imap;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
@ -39,6 +40,7 @@ import static com.fsck.k9.mail.K9MailLib.LOG_TAG;
class ImapFolder extends Folder<ImapMessage> {
private static final SimpleDateFormat RFC3501_DATE = new SimpleDateFormat("dd-MMM-yyyy", Locale.US);
private static final int MORE_MESSAGES_WINDOW_SIZE = 500;
private static final int FETCH_WINDOW_SIZE = 100;
private static final String[] EMPTY_STRING_ARRAY = new String[0];
@ -593,8 +595,8 @@ class ImapFolder extends Folder<ImapMessage> {
return "";
}
synchronized (ImapStore.RFC3501_DATE) {
return " SINCE " + ImapStore.RFC3501_DATE.format(earliestDate);
synchronized (RFC3501_DATE) {
return " SINCE " + RFC3501_DATE.format(earliestDate);
}
}

View file

@ -8,14 +8,12 @@ import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CodingErrorAction;
import java.text.SimpleDateFormat;
import java.util.Deque;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
@ -47,9 +45,6 @@ import static com.fsck.k9.mail.K9MailLib.LOG_TAG;
* </pre>
*/
public class ImapStore extends RemoteStore {
static final SimpleDateFormat RFC3501_DATE = new SimpleDateFormat("dd-MMM-yyyy", Locale.US);
private Set<Flag> permanentFlagsIndex = EnumSet.noneOf(Flag.class);
private ConnectivityManager connectivityManager;