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/protocols/jmx/RmiAuthenticator.java | 13 ++-----------
1 files changed, 2 insertions(+), 11 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/RmiAuthenticator.java b/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/RmiAuthenticator.java
index 7a5a6d5..fbe9d97 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/RmiAuthenticator.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/RmiAuthenticator.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2006-2010 Sun Microsystems, Inc.
- * Portions Copyright 2014 ForgeRock AS
+ * Portions Copyright 2014-2015 ForgeRock AS
*/
package org.opends.server.protocols.jmx;
import org.forgerock.i18n.LocalizableMessage;
@@ -56,21 +56,12 @@
{
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
-
- /**
- * The client authentication mode. <code>true</code> indicates that the
- * client will be authenticated by its certificate (SSL protocol).
- * <code>true</code> indicate , that we have to perform an lDAP
- * authentication
- */
- private boolean needClientCertificate = false;
-
/**
* Indicate if the we are in the finalized phase.
*
* @see JmxConnectionHandler
*/
- private boolean finalizedPhase = false;
+ private boolean finalizedPhase;
/**
* The JMX Client connection to be used to perform the bind (auth)
--
Gitblit v1.10.0