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/util/cli/LDAPConnectionConsoleInteraction.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/util/cli/LDAPConnectionConsoleInteraction.java b/opendj-server-legacy/src/main/java/org/opends/server/util/cli/LDAPConnectionConsoleInteraction.java
index 28c6bbe..748a402 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/util/cli/LDAPConnectionConsoleInteraction.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/util/cli/LDAPConnectionConsoleInteraction.java
@@ -88,28 +88,28 @@
private ApplicationTrustManager trustManager;
/** Boolean that tells if we ask for bind DN or admin UID in the same prompt. */
- private boolean useAdminOrBindDn = false;
+ private boolean useAdminOrBindDn;
/**
* Boolean that tells if we must propose LDAP if it is available even if the
* user provided certificate parameters.
*/
- private boolean displayLdapIfSecureParameters = false;
+ private boolean displayLdapIfSecureParameters;
/** The SecureConnectionCliArgsList object. */
private SecureConnectionCliArgs secureArgsList;
/** Indicate if we need to display the heading. */
- private boolean isHeadingDisplayed = false;
+ private boolean isHeadingDisplayed;
/** the Console application. */
private ConsoleApplication app;
/** Indicate if the trust store in in memory. */
- private boolean trustStoreInMemory = false;
+ private boolean trustStoreInMemory;
/** Indicate if the all certificates are accepted. */
- private boolean trustAll = false;
+ private boolean trustAll;
/** Indicate that the trust manager was created with the parameters provided. */
private boolean trustManagerInitialized;
--
Gitblit v1.10.0