We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c0a1da commit 1b1c662Copy full SHA for 1b1c662
src/main/java/org/scijava/io/handle/FileHandle.java
@@ -285,6 +285,7 @@ private RandomAccessFile raf() throws IOException {
285
}
286
287
private synchronized void initRAF() throws IOException {
288
+ if (raf != null) return;
289
raf = new RandomAccessFile(get().getFile(), getMode());
290
291
0 commit comments