From 1979a167d39be22852738ed10433f47078b40055 Mon Sep 17 00:00:00 2001 From: orbiter Date: Sun, 29 Apr 2007 22:31:44 +0000 Subject: [PATCH] fixed problem with cast git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3625 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/yacy/yacyDHTAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/yacy/yacyDHTAction.java b/source/de/anomic/yacy/yacyDHTAction.java index 87b71f14d..cce0ccfd3 100644 --- a/source/de/anomic/yacy/yacyDHTAction.java +++ b/source/de/anomic/yacy/yacyDHTAction.java @@ -219,7 +219,7 @@ public class yacyDHTAction implements yacyPeerAction { } public synchronized yacySeed getPublicClusterCrawlSeed(String urlHash, TreeMap clusterhashes) { - kelondroCloneableIterator i = new kelondroRotateIterator(new kelondroCloneableSetIterator((TreeSet) clusterhashes.keySet(), urlHash), null); + kelondroCloneableIterator i = new kelondroRotateIterator(new kelondroCloneableSetIterator((TreeSet) (clusterhashes.keySet()), urlHash), null); if (i.hasNext()) { yacySeed seed = seedDB.getConnected((String) i.next()); seed.setAlternativeAddress((String) clusterhashes.get(seed.hash));