From 9a860cf3974ca98a8046d53477da53b4a2d7a66e Mon Sep 17 00:00:00 2001 From: orbiter Date: Fri, 3 Aug 2007 12:24:52 +0000 Subject: [PATCH] bugfix for wrong record tracker message git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4026 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/kelondro/kelondroEcoRecords.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/de/anomic/kelondro/kelondroEcoRecords.java b/source/de/anomic/kelondro/kelondroEcoRecords.java index 1dc90d27b..87b25a029 100644 --- a/source/de/anomic/kelondro/kelondroEcoRecords.java +++ b/source/de/anomic/kelondro/kelondroEcoRecords.java @@ -69,9 +69,7 @@ public class kelondroEcoRecords extends kelondroAbstractRecords { } public synchronized void close() { - if (recordTracker.get(this.filename) != null) { - theLogger.severe("close(): file '" + this.filename + "' was tracked with record tracker, but it should not."); - } + recordTracker.remove(this.filename); super.close(); }