mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-27 20:24:04 +00:00
fix: set size of MappedByteBuffer accordingly (#1608)
This commit is contained in:
committed by
GitHub
parent
de4f73997e
commit
f657a80dc6
@@ -172,7 +172,7 @@ public class DiskOptimizedClipboard extends LinearClipboard implements Closeable
|
|||||||
if (this.fileChannel == null) {
|
if (this.fileChannel == null) {
|
||||||
this.fileChannel = braf.getChannel();
|
this.fileChannel = braf.getChannel();
|
||||||
this.fileChannel.lock();
|
this.fileChannel.lock();
|
||||||
this.byteBuffer = fileChannel.map(FileChannel.MapMode.READ_WRITE, 0, file.length());
|
this.byteBuffer = fileChannel.map(FileChannel.MapMode.READ_WRITE, 0, braf.length());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user