From d709a2e4eecc9773af376587c476e33f0ccefce5 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 20 May 2014 15:09:56 +0000
Subject: [PATCH] Code cleanup. Used UCDetector and AutoRefactor Eclipse plugins to: * reduce visibility of class members, * add final keywords to fields, * convert comments to javadocs, * etc.

---
 opends/src/server/org/opends/server/replication/service/ReplicationDomain.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java b/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
index 2ecdcf7..d539630 100644
--- a/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
+++ b/opends/src/server/org/opends/server/replication/service/ReplicationDomain.java
@@ -1141,7 +1141,7 @@
     private DirectoryException exception;
 
     /** Whether the context is related to an import or an export. */
-    private boolean importInProgress;
+    private final boolean importInProgress;
 
     /** Current counter of messages exchanged during the initialization. */
     private int msgCnt = 0;
@@ -1161,19 +1161,19 @@
      * Start time of the initialization process. ErrorMsg timestamped before
      * this startTime will be ignored.
      */
-    private long startTime;
+    private final long startTime;
 
     /**
      * List for replicas (DS) connected to the topology when initialization
      * started.
      */
-    private Set<Integer> startList = new HashSet<Integer>(0);
+    private final Set<Integer> startList = new HashSet<Integer>(0);
 
     /**
      * List for replicas (DS) with a failure (disconnected from the topology)
      * since the initialization started.
      */
-    private Set<Integer> failureList = new HashSet<Integer>(0);
+    private final Set<Integer> failureList = new HashSet<Integer>(0);
 
     /**
      * Flow control during initialization: for each remote server, counter of

--
Gitblit v1.10.0