Skip to content

Commit

Permalink
Flextable: filename in errormessage if inconsistent
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5015 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
danielr committed Jul 24, 2008
1 parent d42eae2 commit 7913bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/kelondro/kelondroFlexTable.java
Expand Up @@ -471,7 +471,7 @@ public synchronized void close() {
serverLog.logWarning("kelondroFlexTable", "close(): file '" + this.filename + "' was not tracked with record tracker.");
}
if ((index != null) && (this.size() != ((index == null) ? 0 : index.size()))) {
serverLog.logSevere("kelondroFlexTable", "close(): inconsistent content/index size. content.size() = " + this.size() + ", index.size() = " + ((index == null) ? 0 : index.size()));
serverLog.logSevere("kelondroFlexTable", this.filename + " close(): inconsistent content/index size. content.size() = " + this.size() + ", index.size() = " + ((index == null) ? 0 : index.size()));
}

if (index != null) {index.close(); index = null;}
Expand Down

0 comments on commit 7913bdb

Please sign in to comment.