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
1 changed files with 1 additions and 1 deletions

View File

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