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

neil_a_wilson
10.23.2006 bb40b9a02cf40af0349d8e3576f51133d264d4b1
opends/src/server/org/opends/server/plugins/EntryUUIDPlugin.java
@@ -172,7 +172,7 @@
    List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
    if (uuidList != null)
    {
      return new LDIFPluginResult();
      return LDIFPluginResult.SUCCESS;
    }
@@ -193,7 +193,7 @@
    // We shouldn't ever need to return a non-success result.
    return new LDIFPluginResult();
    return LDIFPluginResult.SUCCESS;
  }
@@ -217,7 +217,7 @@
    List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
    if (uuidList != null)
    {
      return new PreOperationPluginResult();
      return PreOperationPluginResult.SUCCESS;
    }
@@ -235,7 +235,7 @@
    // Add the attribute to the entry and return.
    addOperation.setAttribute(entryUUIDType, uuidList);
    return new PreOperationPluginResult();
    return PreOperationPluginResult.SUCCESS;
  }
}