You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/01/30 21:00:04 UTC

svn commit: r1780989 - in /jmeter/trunk/src/jorphan/org/apache/jorphan/collections: ListedHashTree.java SortedHashTree.java

Author: pmouawad
Date: Mon Jan 30 21:00:04 2017
New Revision: 1780989

URL: http://svn.apache.org/viewvc?rev=1780989&view=rev
Log:
Drop unused class SortedHashTree and remove mention of it in javadocs

Removed:
    jmeter/trunk/src/jorphan/org/apache/jorphan/collections/SortedHashTree.java
Modified:
    jmeter/trunk/src/jorphan/org/apache/jorphan/collections/ListedHashTree.java

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/collections/ListedHashTree.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/collections/ListedHashTree.java?rev=1780989&r1=1780988&r2=1780989&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/collections/ListedHashTree.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/collections/ListedHashTree.java Mon Jan 30 21:00:04 2017
@@ -31,8 +31,7 @@ import org.apache.jorphan.util.JMeterErr
 /**
  * ListedHashTree is a different implementation of the {@link HashTree}
  * collection class. In the ListedHashTree, the order in which values are added
- * is preserved (not to be confused with {@link SortedHashTree}, which sorts
- * the order of the values using the compare() function). Any listing of nodes
+ * is preserved . Any listing of nodes
  * or iteration through the list of nodes of a ListedHashTree will be given in
  * the order in which the nodes were added to the tree.
  *