- Output cleanup

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@749215 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2009-03-02 07:34:25 +00:00
parent 439a3905ba
commit 4d72e1806c

View File

@ -79,10 +79,9 @@ public class FastLRUCache implements SolrCache {
description = "Concurrent LRU Cache(maxSize=" + limit + ", initialSize=" + initialSize + description = "Concurrent LRU Cache(maxSize=" + limit + ", initialSize=" + initialSize +
", minSize="+minLimit + ", acceptableSize="+acceptableLimit+", cleanupThread ="+newThread; ", minSize="+minLimit + ", acceptableSize="+acceptableLimit+", cleanupThread="+newThread;
if (autowarmCount > 0) { if (autowarmCount > 0) {
description += ", autowarmCount=" + autowarmCount description += ", autowarmCount=" + autowarmCount + ", regenerator=" + regenerator;
+ ", regenerator=" + regenerator;
} }
description += ')'; description += ')';