You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2018/07/12 09:33:42 UTC

[directory-server] 01/03: Removed a useless 'final'

This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-server.git

commit 2aa383ef6366197c98ac7f95ac00b64f138f1aa8
Author: Emmanuel Lécharny <el...@symas.com>
AuthorDate: Thu Jul 12 11:18:49 2018 +0200

    Removed a useless 'final'
---
 .../java/org/apache/directory/server/core/api/ReferralHandlingMode.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-api/src/main/java/org/apache/directory/server/core/api/ReferralHandlingMode.java b/core-api/src/main/java/org/apache/directory/server/core/api/ReferralHandlingMode.java
index ce0ad66..1f2f698 100644
--- a/core-api/src/main/java/org/apache/directory/server/core/api/ReferralHandlingMode.java
+++ b/core-api/src/main/java/org/apache/directory/server/core/api/ReferralHandlingMode.java
@@ -76,7 +76,7 @@ public enum ReferralHandlingMode
      * @return the referral handling mode enumeration constant
      * @throws IllegalArgumentException if the value is not a recognized value
      */
-    public static final ReferralHandlingMode getModeFromJndi( String jndiValue )
+    public static ReferralHandlingMode getModeFromJndi( String jndiValue )
     {
         jndiValue = Strings.toLowerCaseAscii( Strings.trim( jndiValue ) );