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

Jean-Noel Rouvignac
13.07.2013 126b6adf56a54d2d9af345c638d7dbe0121669cb
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/AttrHistoricalSingle.java
@@ -79,15 +79,12 @@
  {
    if (addTime == null)
    {
      return Collections.<AttrValueHistorical,AttrValueHistorical>emptyMap();
      return Collections.emptyMap();
    }
    else
    {
      AttrValueHistorical val = new AttrValueHistorical(value, addTime, null);
      Map<AttrValueHistorical,AttrValueHistorical> values =
          Collections.<AttrValueHistorical,AttrValueHistorical>
          singletonMap(val, val);
      return values;
      return Collections.singletonMap(val, val);
    }
  }