mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
12.54.2015 21a1bf623c6c4316a8160fb83a05d2adf125416e
Minor fix: Tree should implement Comparable not AbstractTree
2 files modified
4 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AbstractTree.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/Tree.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AbstractTree.java
@@ -36,7 +36,7 @@
 * This class is a wrapper around the tree object and provides basic
 * read and write methods for entries.
 */
abstract class AbstractTree implements Tree, Comparable<Tree>
abstract class AbstractTree implements Tree
{
  /** The name of the tree within the entryContainer. */
  private final TreeName name;
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/Tree.java
@@ -36,7 +36,7 @@
 * This class is a wrapper around the tree object and provides basic
 * read and write methods for entries.
 */
interface Tree
interface Tree extends Comparable<Tree>
{
  /**
   * Opens a tree, optionally creating it. If the provided configuration is transactional,