Skip to content

Commit

Permalink
removed file sync
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@725 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Sep 14, 2005
1 parent 2148c0c commit debb207
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/Demo.html
Expand Up @@ -62,6 +62,7 @@ <h2>Online Demo</h2>
<li><a href="http://yacy.dyndns.org:8000"><b>Michael Christen's Root Peer (Frankfurt, Germany)</b></a></li>
<li><a href="http://www.suma-lab.de:8080"><b>The Search-Engine Lab of the SuMa-eV (Hannover, Germany)</b></a></li>
<li><a href="http://yacy.naggel.info/"><b>Hendrik Richter's PHP interface to his YaCy peer</b></a></li>
<li><a href="http://www.lulabad.de/"><b>Alexander Fieger's PHP interface to his YaCy peer 'lulabad.de'</b></a></li>
<li><a href="http://yacy.guerrier.info/"><b>Olivier Guerrier's Peer (France)</b></a></li>
</ul>

Expand Down
4 changes: 2 additions & 2 deletions source/de/anomic/kelondro/kelondroFileRA.java
Expand Up @@ -76,7 +76,7 @@ private void sync() throws IOException {

// pseudo-native method read
public int read() throws IOException {
sync();
//sync();
return RAFile.read();
}

Expand All @@ -86,7 +86,7 @@ public void write(int b) throws IOException {
}

public int read(byte[] b, int off, int len) throws IOException {
sync();
//sync();
RAFile.read(b, off, len);
return len;
}
Expand Down

0 comments on commit debb207

Please sign in to comment.