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

Matthew Swift
28.28.2015 0df0a5ef0ddc1e532659fd6ac5f35b02c5563f6a
Minor code cleanup
1 files modified
7 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/BackendStat.java 7 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/BackendStat.java
@@ -278,7 +278,6 @@
  private static final String SINGLELINE_NAME = "singleline";
  private static final String SINGLELINE = "singleLine";
  private static final int INDENT = 4;
  private static final String HEXDUMP_LINE_FORMAT = "%s%s %s%n";
  /** The error stream which this application should use. */
@@ -1130,7 +1129,6 @@
          long eighty = 0;
          long ninety = 0;
          long ninetyFive = 0;
          long invalidIDSet = 0;
          long undefined = 0;
          long count = 0;
          BackendTreeKeyValue keyDecoder = new BackendTreeKeyValue(index);
@@ -1139,14 +1137,13 @@
            while (cursor.next())
            {
              count++;
              EntryIDSet entryIDSet = null;
              EntryIDSet entryIDSet;
              try
              {
                entryIDSet = cursor.getValue();
              }
              catch (Exception e)
              {
                invalidIDSet++;
                continue;
              }
@@ -1308,7 +1305,7 @@
            ByteString key;
            ByteString maxKey = null;
            ByteString value;
            boolean maxKeyReached = false;
            boolean maxKeyReached;
            if (options.get(DUMP_MIN_KEY_VALUE).isPresent())
            {