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

Jean-Noel Rouvignac
09.40.2015 edc595e56216e680d268376e85c7625f2f052b6a
opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/VerifyJob.java
@@ -432,14 +432,14 @@
    {
      iterateID2Subtree();
    }
    else if (attrIndexList.size() > 0)
    else if (!attrIndexList.isEmpty())
    {
      for (Index index : attrIndexList.get(0).getAllIndexes())
      {
        iterateAttrIndex(index);
      }
    }
    else if (vlvIndexList.size() > 0)
    else if (!vlvIndexList.isEmpty())
    {
      iterateVLVIndex(vlvIndexList.get(0), true);
    }
@@ -1565,7 +1565,7 @@
        {
          totalCount = id2s.getRecordCount();
        }
        else if(attrIndexList.size() > 0)
        else if(!attrIndexList.isEmpty())
        {
          AttributeIndex attrIndex = attrIndexList.get(0);
          totalCount = 0;
@@ -1574,7 +1574,7 @@
            totalCount += getRecordCount(index);
          }
        }
        else if (vlvIndexList.size() > 0)
        else if (!vlvIndexList.isEmpty())
        {
          totalCount = vlvIndexList.get(0).getRecordCount();
        }