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

Jean-Noel Rouvignac
29.52.2013 02ce2ef82d14ac6de30f7478a55988aa554df8a2
opends/src/server/org/opends/server/replication/plugin/LDAPReplicationDomain.java
@@ -5089,9 +5089,9 @@
      Iterator<String> iterator;
      // Deduce the wished fractional mode
      if (exclIt.hasNext())
      if (exclIt != null && exclIt.hasNext())
      {
        if (inclIt.hasNext())
        if (inclIt != null && inclIt.hasNext())
        {
          throw new ConfigException(
            NOTE_ERR_FRACTIONAL_CONFIG_BOTH_MODES.get());
@@ -5102,7 +5102,7 @@
      }
      else
      {
        if (inclIt.hasNext())
        if (inclIt != null && inclIt.hasNext())
        {
          fractionalMode = INCLUSIVE_FRACTIONAL;
          iterator = inclIt;