From 19adadae116afd3143c147c3e979b708e882dc57 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Fri, 8 Jan 2010 23:47:34 +0000 Subject: [PATCH] actually specify the size of our BufferedOutputStream as 1k to parallel other implementations and quiet down a consistent warning in our android logs --- 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 ec055401d..b14420a6f 100644 --- a/src/com/fsck/k9/mail/store/ImapStore.java +++ b/src/com/fsck/k9/mail/store/ImapStore.java @@ -1866,7 +1866,7 @@ public class ImapStore extends Store } } - mOut = new BufferedOutputStream(mOut); + mOut = new BufferedOutputStream(mOut, 1024); try {