tests:remove tracing exception

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236825 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2012-01-27 18:59:50 +00:00
parent f7e8a4abd4
commit b141bbb52e
1 changed files with 0 additions and 5 deletions

View File

@ -115,11 +115,6 @@ public abstract class SolrTestCaseJ4 extends LuceneTestCase {
if (numOpens != 0 || numCloses != 0) {
// NOTE: some other tests don't use this base class and hence won't reset the counts.
log.warn("startTrackingSearchers: numOpens="+numOpens+" numCloses="+numCloses);
try {
throw new RuntimeException();
} catch (Exception e) {
log.error("",e);
}
numOpens = numCloses = 0;
}
}