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

Jean-Noel Rouvignac
08.06.2015 b8c6b80da1cb6118167a934daa480eb381c59e0e
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistorical.java
@@ -23,6 +23,7 @@
 *
 *      Copyright 2006-2010 Sun Microsystems, Inc.
 *      Portions Copyright 2013-2014 ForgeRock, AS.
 *      Portions Copyright 2015 ForgeRock AS.
 */
package org.opends.server.replication.plugin;
@@ -81,10 +82,7 @@
  public static AttrHistorical createAttributeHistorical(
      AttributeType type)
  {
    if (type.isSingleValue())
      return new AttrHistoricalSingle();
    else
      return new AttrHistoricalMultiple();
    return type.isSingleValue() ? new AttrHistoricalSingle() : new AttrHistoricalMultiple();
  }
  /**
@@ -92,8 +90,7 @@
   *
   * @return the List of ValueInfo
   */
  public abstract Map<AttrValueHistorical,AttrValueHistorical>
      getValuesHistorical();
  public abstract Map<AttrValueHistorical, AttrValueHistorical> getValuesHistorical();
  /**