mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-23 08:14:45 +00:00
Reduced logging
This commit is contained in:
parent
e24481e0b4
commit
841d32e8a7
1 changed files with 4 additions and 1 deletions
|
@ -38,7 +38,10 @@ public class CharsetHelper {
|
|||
private static final int MAX_SAMPLE_SIZE = 8192;
|
||||
private static String CHINESE = new Locale("zh").getLanguage();
|
||||
private static final List<String> COMMON = Collections.unmodifiableList(Arrays.asList(
|
||||
"US-ASCII", "ISO-8859-1", "ISO-8859-2", "windows-1250", "windows-1252", "windows-1257", "UTF-8"
|
||||
"US-ASCII",
|
||||
"ISO-8859-1", "ISO-8859-2",
|
||||
"windows-1250", "windows-1252", "windows-1257",
|
||||
"UTF-7", "UTF-8"
|
||||
));
|
||||
private static final int MIN_W1252 = 10;
|
||||
private static final Pair<byte[], byte[]>[] sUtf8W1252 = new Pair[128];
|
||||
|
|
Loading…
Reference in a new issue