From 45ebe477ee2a71487a53422f191f1d6bc8f49c8c Mon Sep 17 00:00:00 2001 From: rramthun Date: Sat, 17 Dec 2005 11:13:44 +0000 Subject: [PATCH] Bugfix for http://www.yacy-forum.de/viewtopic.php?p=14175 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1224 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Steering.html | 2 +- source/de/anomic/kelondro/kelondroMHashMap.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htroot/Steering.html b/htroot/Steering.html index 4b4125842..04dfb0522 100644 --- a/htroot/Steering.html +++ b/htroot/Steering.html @@ -27,7 +27,7 @@ Please log in. Restart YaCy.
Application will terminate after working off all scheduled tasks.
Then YaCy will restart.
-Wenn man nach 5 Minuten nicht auf YaCy zugreifen kann, ist ein Fehler aufgetreten. +If you can't reach YaCy's interface after 5 minutes restart failed. #(/info)#

diff --git a/source/de/anomic/kelondro/kelondroMHashMap.java b/source/de/anomic/kelondro/kelondroMHashMap.java index 8501166f5..0d3f0f198 100644 --- a/source/de/anomic/kelondro/kelondroMHashMap.java +++ b/source/de/anomic/kelondro/kelondroMHashMap.java @@ -323,7 +323,7 @@ public class kelondroMHashMap { for (int i = 0; i < 100; i++) map.put(3333 + i, ("" + (1000 + i)).getBytes()); Iterator i = map.entries(); kelondroMHashMap.entry e; - System.out.println("AufzŠhlung der Elemente: count=" + map.size()); + System.out.println("Enumeration of elements: count=" + map.size()); int c = 0; while (i.hasNext()) { e = (kelondroMHashMap.entry) i.next();