Skip to content

Commit

Permalink
fix for bad fix with random access files (no performace enhancement)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4314 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jan 9, 2008
1 parent 704de4d commit ce72574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/kelondro/kelondroFileRA.java
Expand Up @@ -57,7 +57,7 @@ public kelondroFileRA(String file) throws IOException, FileNotFoundException {

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 {
Expand Down

0 comments on commit ce72574

Please sign in to comment.