You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2012/01/27 19:59:50 UTC

svn commit: r1236825 - /lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java

Author: yonik
Date: Fri Jan 27 18:59:50 2012
New Revision: 1236825

URL: http://svn.apache.org/viewvc?rev=1236825&view=rev
Log:
tests:remove tracing exception

Modified:
    lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java

Modified: lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java?rev=1236825&r1=1236824&r2=1236825&view=diff
==============================================================================
--- lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java (original)
+++ lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java Fri Jan 27 18:59:50 2012
@@ -115,11 +115,6 @@ public abstract class SolrTestCaseJ4 ext
     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;
     }
   }