From 2e052eb8166379cdeff657f695f49657503f8a05 Mon Sep 17 00:00:00 2001 From: orbiter Date: Thu, 12 Apr 2007 13:49:50 +0000 Subject: [PATCH] fixed a bug in remote search with remote search tracker git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3565 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/yacy/search.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/yacy/search.java b/htroot/yacy/search.java index 7fc8f60a2..ee1dd58cb 100644 --- a/htroot/yacy/search.java +++ b/htroot/yacy/search.java @@ -257,7 +257,7 @@ public final class search { searchProfile.put("time", trackerHandle); sb.remoteSearches.add(searchProfile); TreeSet handles = (TreeSet) sb.remoteSearchTracker.get(client); - if (handles == null) handles = new TreeSet(kelondroBase64Order.enhancedCoder); + if (handles == null) handles = new TreeSet(); handles.add(trackerHandle); sb.remoteSearchTracker.put(client, handles);