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(); e.printStackTrace();
} }
this.braf = new RandomAccessFile(file, "rw"); 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(0);
braf.setLength(volume); braf.setLength(fileLength);
init(); init();
// write getLength() etc // write getLength() etc
byteBuffer.putChar(2, (char) getWidth()); byteBuffer.putChar(2, (char) getWidth());