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/plugins/ReferentialIntegrityPlugin.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java b/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java
index ff8943c..f7b5f97 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java
@@ -118,7 +118,7 @@
private long interval;
//The flag used by the background thread to check if it should exit.
- private boolean stopRequested=false;
+ private boolean stopRequested;
//The thread name.
private static final String name =
@@ -133,7 +133,7 @@
private File logFile;
//The Thread class that the background thread corresponds to.
- private Thread backGroundThread=null;
+ private Thread backGroundThread;
/**
* Used to save a map in the modifyDN operation attachment map that holds
--
Gitblit v1.10.0