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/ldap/LDAPClientConnection.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPClientConnection.java b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPClientConnection.java
index 7bed6ab..cd5b001 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPClientConnection.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPClientConnection.java
@@ -408,7 +408,7 @@
 
   /** The statistics tracker associated with this client connection. */
   private final LDAPStatistics statTracker;
-  private boolean useNanoTime=false;
+  private boolean useNanoTime;
 
 
   /** The connection ID assigned to this connection. */
@@ -447,10 +447,10 @@
   private final int bufferSize;
   private final RedirectingByteChannel saslChannel;
   private final RedirectingByteChannel tlsChannel;
-  private volatile ConnectionSecurityProvider saslActiveProvider = null;
-  private volatile ConnectionSecurityProvider tlsActiveProvider = null;
-  private volatile ConnectionSecurityProvider saslPendingProvider = null;
-  private volatile ConnectionSecurityProvider tlsPendingProvider = null;
+  private volatile ConnectionSecurityProvider saslActiveProvider;
+  private volatile ConnectionSecurityProvider tlsActiveProvider;
+  private volatile ConnectionSecurityProvider saslPendingProvider;
+  private volatile ConnectionSecurityProvider tlsPendingProvider;
 
 
   /**

--
Gitblit v1.10.0