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

Matthew Swift
12.34.2015 bfbbee7c891b8b26c8e5190349eacfd02ce4a1d0
Minor code cleanup
1 files modified
4 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AttributeIndex.java 4 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AttributeIndex.java
@@ -76,7 +76,7 @@
  private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
  /** Type of the index filter. */
  static enum IndexFilterType
  enum IndexFilterType
  {
    /** Equality. */
    EQUALITY(IndexType.EQUALITY),
@@ -93,7 +93,7 @@
    private final IndexType indexType;
    private IndexFilterType(IndexType indexType)
    IndexFilterType(IndexType indexType)
    {
      this.indexType = indexType;
    }