mirror of https://github.com/apache/poi.git
bumping minimum record length based on user feedback on tika-dev list
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1868211 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b10f94cc75
commit
a564c52311
|
@ -24,7 +24,7 @@ import org.apache.poi.util.LittleEndianInput;
|
|||
public class Blob {
|
||||
|
||||
//arbitrarily selected; may need to increase
|
||||
private static final int MAX_RECORD_LENGTH = 1_000_000;
|
||||
private static final int MAX_RECORD_LENGTH = 10_000_000;
|
||||
|
||||
private byte[] _value;
|
||||
|
||||
|
|
Loading…
Reference in New Issue