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

Jean-Noel Rouvignac
16.13.2014 ba6deb90899c025c0bd5e8b2bb169a90daa0e2aa
opendj3-server-dev/src/server/org/opends/server/backends/jeb/VLVIndex.java
@@ -644,13 +644,13 @@
        // This is the last unbounded set.
        while(av != null)
        {
          sortValuesSet.add(av.getEntryID(), av.getValues(), av.getTypes());
          sortValuesSet.add(av);
          av = moveToNextSortValues(aValues);
        }
        while(dv != null)
        {
          sortValuesSet.remove(dv.getEntryID(), dv.getValues());
          sortValuesSet.remove(dv);
          dv = moveToNextSortValues(dValues);
        }
      }
@@ -660,13 +660,13 @@
        while(av != null && av.compareTo(maxValues) <= 0)
        {
          sortValuesSet.add(av.getEntryID(), av.getValues(), av.getTypes());
          sortValuesSet.add(av);
          av = moveToNextSortValues(aValues);
        }
        while(dv != null && dv.compareTo(maxValues) <= 0)
        {
          sortValuesSet.remove(dv.getEntryID(), dv.getValues());
          sortValuesSet.remove(dv);
          dv = moveToNextSortValues(dValues);
        }
      }