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

matthew_swift
03.39.2006 59685c84348f8d71dc3bbd3513c5eb10cc738a8e
opends/src/server/org/opends/server/backends/task/TaskBackend.java
@@ -453,7 +453,7 @@
      return taskScheduler.getRecurringTaskParentEntry();
    }
    DN parentDN = entryDN.getParent();
    DN parentDN = entryDN.getParentDNInSuffix();
    if (parentDN == null)
    {
      return null;
@@ -509,7 +509,7 @@
      return true;
    }
    DN parentDN = entryDN.getParent();
    DN parentDN = entryDN.getParentDNInSuffix();
    if (parentDN == null)
    {
      return false;
@@ -553,7 +553,7 @@
    // Get the DN for the entry and then get its parent.
    DN entryDN = entry.getDN();
    DN parentDN = entryDN.getParent();
    DN parentDN = entryDN.getParentDNInSuffix();
    if (parentDN == null)
    {
@@ -618,7 +618,7 @@
    // Get the parent for the provided entry DN.  It must be either the
    // scheduled or recurring task parent DN.
    DN parentDN = entryDN.getParent();
    DN parentDN = entryDN.getParentDNInSuffix();
    if (parentDN == null)
    {
      int    msgID   = MSGID_TASKBE_DELETE_INVALID_ENTRY;
@@ -841,7 +841,7 @@
    }
    else
    {
      DN parentDN = baseDN.getParent();
      DN parentDN = baseDN.getParentDNInSuffix();
      if (parentDN == null)
      {
        int    msgID   = MSGID_TASKBE_SEARCH_INVALID_BASE;