am 7fd8ebef
: Merge "Reduce max in-memory size of IMAP text from 16MB to 2MB" into ics-mr1
* commit '7fd8ebef9f65eac8f1e1e21c8fe1f94e069cbbdd': Reduce max in-memory size of IMAP text from 16MB to 2MB
This commit is contained in:
commit
e285f7da80
@ -40,7 +40,7 @@ public class ImapResponseParser {
|
|||||||
/**
|
/**
|
||||||
* Literal larger than this will be stored in temp file.
|
* Literal larger than this will be stored in temp file.
|
||||||
*/
|
*/
|
||||||
private static final int LITERAL_KEEP_IN_MEMORY_THRESHOLD = 16 * 1024 * 1024;
|
private static final int LITERAL_KEEP_IN_MEMORY_THRESHOLD = 2 * 1024 * 1024;
|
||||||
|
|
||||||
/** Input stream */
|
/** Input stream */
|
||||||
private final PeekableInputStream mIn;
|
private final PeekableInputStream mIn;
|
||||||
|
Loading…
Reference in New Issue
Block a user