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/DayOfWeek.java | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/DayOfWeek.java b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/DayOfWeek.java
index b2801e0..4d03ed7 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/DayOfWeek.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/DayOfWeek.java
@@ -12,7 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2008 Sun Microsystems, Inc.
- * Portions Copyright 2013-2015 ForgeRock AS.
+ * Portions Copyright 2013-2016 ForgeRock AS.
*/
package org.opends.server.authorization.dseecompat;
@@ -25,16 +25,12 @@
import org.forgerock.i18n.LocalizableMessage;
-/**
- * This class implements the dayofweek bind rule keyword.
- */
+/** This class implements the dayofweek bind rule keyword. */
public class DayOfWeek implements KeywordBindRule {
-
/** List containing the enumeration of the day of the week. */
- private List<EnumDayOfWeek> days;
-
+ private final List<EnumDayOfWeek> days;
/** Enumeration representing the bind rule operation type. */
- private EnumBindRuleType type;
+ private final EnumBindRuleType type;
/**
* Create a class representing a dayofweek bind rule keyword.
@@ -91,7 +87,6 @@
return matched.getRet(type, false);
}
- /** {@inheritDoc} */
@Override
public String toString()
{
@@ -100,11 +95,9 @@
return sb.toString();
}
- /** {@inheritDoc} */
@Override
public final void toString(StringBuilder buffer)
{
buffer.append(super.toString());
}
-
}
--
Gitblit v1.10.0