Update DiskOptimizedClipboard.java

This commit is contained in:
Jesse Boyd 2019-11-04 19:29:21 +00:00
parent 1e16095cba
commit b224457464
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -97,9 +97,9 @@ public class DiskOptimizedClipboard extends LinearClipboard implements Closeable
e.printStackTrace();
}
this.braf = new RandomAccessFile(file, "rw");
long volume = (long) getArea() * 2L + (long) HEADER_SIZE;
long fileLength = (long) getVolume() * 2L + (long) HEADER_SIZE;
braf.setLength(0);
braf.setLength(volume);
braf.setLength(fileLength);
init();
// write getLength() etc
byteBuffer.putChar(2, (char) getWidth());