Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

Commit

Permalink
Bump size of buffer for reading raw files
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored and tresf committed Sep 16, 2015
1 parent 793c61c commit ec72091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qz/common/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class Constants {
public static final String HEXES = "0123456789ABCDEF";
public static final char[] HEXES_ARRAY = HEXES.toCharArray();
public static final int OUTPUT_STREAM_SIZE = 20480;
public static final int BYTE_BUFFER_SIZE = 512;
public static final int BYTE_BUFFER_SIZE = 8192;
public static final int APPEND_XML = 1;
public static final String VERSION = "1.9.4";
public static final int APPEND_RAW = 2;
Expand Down

0 comments on commit ec72091

Please sign in to comment.