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

actually specify the size of our BufferedOutputStream as 1k to parallel

other implementations and quiet down a consistent warning in our android
logs
This commit is contained in:
Jesse Vincent 2010-01-08 23:47:34 +00:00
parent e1c686d40d
commit 19adadae11

View File

@ -1866,7 +1866,7 @@ public class ImapStore extends Store
} }
} }
mOut = new BufferedOutputStream(mOut); mOut = new BufferedOutputStream(mOut, 1024);
try try
{ {