opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AbstractTree.java
@@ -35,7 +35,7 @@ * This class is a wrapper around the tree object and provides basic * read and write methods for entries. */ abstract class AbstractTree implements Tree abstract class AbstractTree implements Tree, Comparable<Tree> { /** The name of the tree within the entryContainer. */ private TreeName name; @@ -89,4 +89,11 @@ { return name.toString(); } @Override public int compareTo(Tree o) { return name.compareTo(o.getName()); } }