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

Jean-Noel Rouvignac
30.09.2013 cd1b8379727fb264fa63718742905744815b35e5
AttrHistoricalMultiple.java, AttrHistoricalSingle.java:
Fixed Checkstyle issue.
2 files modified
11 ■■■■ changed files
opends/src/server/org/opends/server/replication/plugin/AttrHistoricalMultiple.java 5 ●●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/replication/plugin/AttrHistoricalSingle.java 6 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/replication/plugin/AttrHistoricalMultiple.java
@@ -40,7 +40,6 @@
import org.opends.server.types.Modification;
import org.opends.server.types.ModificationType;
/**
 * This classes is used to store historical information for multiple valued
 * attributes.
@@ -52,9 +51,9 @@
 */
public class AttrHistoricalMultiple extends AttrHistorical
{
  /** Last time when the attribute was deleted */
  /** Last time when the attribute was deleted. */
  private ChangeNumber deleteTime;
  /** Last time the attribute was modified */
  /** Last time the attribute was modified. */
  private ChangeNumber lastUpdateTime;
  private final Map<AttrValueHistorical, AttrValueHistorical> valuesHist;
opends/src/server/org/opends/server/replication/plugin/AttrHistoricalSingle.java
@@ -49,11 +49,11 @@
 */
public class AttrHistoricalSingle extends AttrHistorical
{
  /** Last time when the attribute was deleted */
  /** Last time when the attribute was deleted. */
  private ChangeNumber deleteTime = null;
  /** Last time when a value was added */
  /** Last time when a value was added. */
  private ChangeNumber addTime = null;
  /** Last added value */
  /** Last added value. */
  private AttributeValue value = null;
  /**