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:
Tim Allison 2019-10-10 03:03:50 +00:00
parent b10f94cc75
commit a564c52311
1 changed files with 1 additions and 1 deletions

View File

@ -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;