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

Jean-Noel Rouvignac
14.15.2014 fd650a8fd632005824a2e64d78549992ee9ffda0
opendj3-server-dev/src/server/org/opends/server/extensions/ConfigFileHandler.java
@@ -1011,18 +1011,11 @@
         throws DirectoryException
  {
    ConfigEntry baseEntry = configEntries.get(entryDN);
    if(baseEntry == null)
    if (baseEntry != null)
    {
      return ConditionResult.UNDEFINED;
      return ConditionResult.valueOf(baseEntry.hasChildren());
    }
    else if(baseEntry.hasChildren())
    {
      return ConditionResult.TRUE;
    }
    else
    {
      return ConditionResult.FALSE;
    }
    return ConditionResult.UNDEFINED;
  }