reduce the size of the memmapped file

pull/62/head
Zlatin Balevsky 2021-06-04 03:48:15 +01:00
parent 8892dd73a8
commit dfd7be9618
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ import java.util.Set;
public class RAIFile implements RandomAccessInterface {
private static final long MAX_SIZE = Integer.MAX_VALUE;
private static final long MAX_SIZE = 0x1 << 29;
private File f;
private final ByteBuffer byteBuffer;