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/service/ReplicationDomain.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java
index 9fca4ae..8b04fd4 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/service/ReplicationDomain.java
@@ -1097,9 +1097,9 @@
private int importSource = RoutableMsg.UNKNOWN_SERVER;
/** The total entry count expected to be processed. */
- private long entryCount = 0;
+ private long entryCount;
/** The count for the entry not yet processed. */
- private long entryLeftCount = 0;
+ private long entryLeftCount;
/** Exception raised during the initialization. */
private DirectoryException exception;
@@ -1108,13 +1108,13 @@
private final boolean importInProgress;
/** Current counter of messages exchanged during the initialization. */
- private int msgCnt = 0;
+ private int msgCnt;
/**
* Number of connections lost when we start the initialization. Will help
* counting connections lost during initialization,
*/
- private int initNumLostConnections = 0;
+ private int initNumLostConnections;
/**
* Request message sent when this server has the initializeFromRemote task.
--
Gitblit v1.10.0