From 88f16d892d54fd8c3e190cc1f6363638b11ae1a3 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 10:26:23 +0000
Subject: [PATCH] AutoRefactor: remove fields default values

---
 opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/AckMsg.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/AckMsg.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/AckMsg.java
index 128386f..b18b3b1 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/AckMsg.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/AckMsg.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2009 Sun Microsystems, Inc.
- *      Portions copyright 2013-2014 ForgeRock AS.
+ *      Portions Copyright 2013-2015 ForgeRock AS.
  */
 package org.opends.server.replication.protocol;
 
@@ -63,19 +63,19 @@
    * Did some servers go in timeout when the matching update (corresponding to
    * CSN) was sent?.
    */
-  private boolean hasTimeout = false;
+  private boolean hasTimeout;
 
   /**
    * Were some servers in wrong status when the matching update (corresponding
    * to CSN) was sent?.
    */
-  private boolean hasWrongStatus = false;
+  private boolean hasWrongStatus;
 
   /**
    * Did some servers make an error replaying the sent matching update
    * (corresponding to CSN)?.
    */
-  private boolean hasReplayError = false;
+  private boolean hasReplayError;
 
   /**
    * The list of server ids that had errors for the sent matching update

--
Gitblit v1.10.0