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/controls/GetEffectiveRightsRequestControl.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/controls/GetEffectiveRightsRequestControl.java b/opendj-server-legacy/src/main/java/org/opends/server/controls/GetEffectiveRightsRequestControl.java
index 89b15d1..bbfafaa 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/controls/GetEffectiveRightsRequestControl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/controls/GetEffectiveRightsRequestControl.java
@@ -154,16 +154,16 @@
   private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
 
   //The DN representing the authzId. May be null.
-  private DN authzDN=null;
+  private DN authzDN;
 
   //The raw DN representing the authzId. May be null.
-  private String rawAuthzDN=null;
+  private String rawAuthzDN;
 
   //The list of additional attribute types to return rights for. May be null.
-  private List<AttributeType> attrs=null;
+  private List<AttributeType> attrs;
 
   //The raw DN representing the authzId. May be null.
-  private List<String> rawAttrs=null;
+  private List<String> rawAttrs;
 
   /**
    * Create a new geteffectiverights control with the specified authzDN and

--
Gitblit v1.10.0