You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ry...@apache.org on 2008/12/09 21:23:52 UTC

svn commit: r724867 - /lucene/solr/trunk/src/common/org/apache/solr/common/util/RTimer.java

Author: ryan
Date: Tue Dec  9 12:23:52 2008
New Revision: 724867

URL: http://svn.apache.org/viewvc?rev=724867&view=rev
Log:
expose the sub timer list

Modified:
    lucene/solr/trunk/src/common/org/apache/solr/common/util/RTimer.java

Modified: lucene/solr/trunk/src/common/org/apache/solr/common/util/RTimer.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/common/org/apache/solr/common/util/RTimer.java?rev=724867&r1=724866&r2=724867&view=diff
==============================================================================
--- lucene/solr/trunk/src/common/org/apache/solr/common/util/RTimer.java (original)
+++ lucene/solr/trunk/src/common/org/apache/solr/common/util/RTimer.java Tue Dec  9 12:23:52 2008
@@ -122,6 +122,14 @@
     }
     return m;
   }
+  
+  /**
+   * Manipulating this map may have undefined results.
+   */
+  public SimpleOrderedMap<RTimer> getChildren()
+  {
+    return children;
+  }
 
   /*************** Testing *******/
   public static void main(String []argv) throws InterruptedException {