Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1497 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Jan 30, 2006
1 parent cdc595a commit 9bc62bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/yacy/yacyPeerActions.java
Expand Up @@ -116,7 +116,7 @@ public void updateMySeed() {
sb.setConfig("lastseedcheckUptime", uptime);
sb.setConfig("lastseedcheckIndexedc", indexedc);
}
if(! (indexedcdiff == 0 || (uptimediff == 0) ){ //keep old one, if the diff is 0
if(! (indexedcdiff == 0 || uptimediff == 0) ){ //keep old one, if the diff is 0
seedDB.mySeed.put(yacySeed.ISPEED, Long.toString(indexedcdiff / uptimediff)); // the speed of indexing (pages/minute) of the peer
}
seedDB.mySeed.put(yacySeed.UPTIME, Long.toString(uptime)); // the number of minutes that the peer is up in minutes/day (moving average MA30)
Expand Down

0 comments on commit 9bc62bf

Please sign in to comment.