From 64721a895973f935c1adb975247770f402a88fdf Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 25 Apr 2016 15:10:24 +0000
Subject: [PATCH] ACI UCDetector and AutoRefactor code cleanup

---
 opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/IP.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/IP.java b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/IP.java
index e59962f..6647288 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/IP.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/IP.java
@@ -36,13 +36,13 @@
      * bind rule address. These are all of the valid characters that may
      * appear in an bind rule address part.
      */
-    private  static final Pattern ipRegEx =
+    private static final Pattern ipRegEx =
         Pattern.compile("((?i)[\\.{1}[a-f]\\d:\\+{1}\\*/{1}\\t\\[{1}\\]{1}]+(?-i))");
 
     /** List of the pattern classes, one for each address decoded from the bind rule. */
-    private List<PatternIP> patternIPList;
+    private final List<PatternIP> patternIPList;
     /** The type of the bind rule (!= or =). */
-    private EnumBindRuleType type;
+    private final EnumBindRuleType type;
 
     /**
      * Create a class representing the IP bind rule expressions for this ACI.

--
Gitblit v1.10.0