Increase PackOutputStream copy buffer to 64 KiB

Colby just pointed out to me the buffer was 16 KiB. This may
be very small for common objects. Increase to 64 KiB.

Change-Id: Ideecc4720655a57673252f7adb8eebdf2fda230d
This commit is contained in:
Shawn Pearce 2013-04-10 13:05:58 -07:00
parent 46ef61a702
commit 6c0bb4351d
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public final class PackOutputStream extends OutputStream {
private final byte[] headerBuffer = new byte[32];
private final byte[] copyBuffer = new byte[16 << 10];
private final byte[] copyBuffer = new byte[64 << 10];
private long checkCancelAt;