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

neil_a_wilson
03.52.2007 e1ea3e0d8999105f144d2be98e0286928b8319ed
opends/src/server/org/opends/server/backends/BackupBackend.java
@@ -97,9 +97,6 @@
       extends Backend
       implements ConfigurableComponent
{
  // The DN of the configuration entry for this backend.
  private DN configEntryDN;
@@ -132,8 +129,6 @@
  {
    super();
    // Perform all initialization in initializeBackend.
  }
@@ -413,7 +408,7 @@
    // If the requested entry was the backend base entry, then retrieve it.
    if (entryDN.equals(backupBaseDN))
    {
      return backupBaseEntry;
      return backupBaseEntry.duplicate(true);
    }
@@ -543,7 +538,9 @@
    userAttrs.put(t, attrList);
    return new Entry(entryDN, ocMap, userAttrs, opAttrs);
    Entry e = new Entry(entryDN, ocMap, userAttrs, opAttrs);
    e.processVirtualAttributes();
    return e;
  }
@@ -764,7 +761,9 @@
    }
    return new Entry(entryDN, ocMap, userAttrs, opAttrs);
    Entry e = new Entry(entryDN, ocMap, userAttrs, opAttrs);
    e.processVirtualAttributes();
    return e;
  }