fix for bad fix with random access files (no performace enhancement)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4314 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 704de4dee8
commit ce7257483d

@ -57,7 +57,7 @@ public final class kelondroFileRA extends kelondroAbstractRA implements kelondro
public kelondroFileRA(File file) throws IOException, FileNotFoundException {
this.name = file.getName();
RAFile = new RandomAccessFile(file, "rwd");
RAFile = new RandomAccessFile(file, "rw");
}
public long length() throws IOException {

Loading…
Cancel
Save