From 81687b6bd575c6e39d22ea415e6d3ce0cd75fd64 Mon Sep 17 00:00:00 2001 From: orbiter Date: Thu, 21 Feb 2008 15:37:46 +0000 Subject: [PATCH] added missing hachCode computation for previous feature this solves also the missing image double-check fetaure! git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4500 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSnippetCache.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/de/anomic/plasma/plasmaSnippetCache.java b/source/de/anomic/plasma/plasmaSnippetCache.java index 93a149298..0229d63a0 100644 --- a/source/de/anomic/plasma/plasmaSnippetCache.java +++ b/source/de/anomic/plasma/plasmaSnippetCache.java @@ -242,6 +242,9 @@ public class plasmaSnippetCache { if ((this.name == null) || (this.name.length() == 0)) this.name = "_"; if ((this.attr == null) || (this.attr.length() == 0)) this.attr = "_"; } + public int hashCode() { + return href.hashCode(); + } } public static boolean existsInCache(yacyURL url, Set queryhashes) {