From debb207a7480776a1bb33f9588ef8aeb05f5ad59 Mon Sep 17 00:00:00 2001
From: orbiter
Date: Wed, 14 Sep 2005 14:25:46 +0000
Subject: [PATCH] removed file sync
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@725 6c8d7289-2bf4-0310-a012-ef5d649a1542
---
doc/Demo.html | 1 +
source/de/anomic/kelondro/kelondroFileRA.java | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/doc/Demo.html b/doc/Demo.html
index 17e18e448..a9ddf7232 100644
--- a/doc/Demo.html
+++ b/doc/Demo.html
@@ -62,6 +62,7 @@ However, the search function is public.
Michael Christen's Root Peer (Frankfurt, Germany)
The Search-Engine Lab of the SuMa-eV (Hannover, Germany)
Hendrik Richter's PHP interface to his YaCy peer
+Alexander Fieger's PHP interface to his YaCy peer 'lulabad.de'
Olivier Guerrier's Peer (France)
diff --git a/source/de/anomic/kelondro/kelondroFileRA.java b/source/de/anomic/kelondro/kelondroFileRA.java
index 840ea467f..f62152a6d 100644
--- a/source/de/anomic/kelondro/kelondroFileRA.java
+++ b/source/de/anomic/kelondro/kelondroFileRA.java
@@ -76,7 +76,7 @@ public class kelondroFileRA extends kelondroAbstractRA implements kelondroRA {
// pseudo-native method read
public int read() throws IOException {
- sync();
+ //sync();
return RAFile.read();
}
@@ -86,7 +86,7 @@ public class kelondroFileRA extends kelondroAbstractRA implements kelondroRA {
}
public int read(byte[] b, int off, int len) throws IOException {
- sync();
+ //sync();
RAFile.read(b, off, len);
return len;
}