You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 17:34:03 UTC

[commons-net] branch master updated: Remove redundant modifiers like private on enum constructors.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git


The following commit(s) were added to refs/heads/master by this push:
     new 39ae8c8  Remove redundant modifiers like private on enum constructors.
39ae8c8 is described below

commit 39ae8c87dabf1083b836ca23b1aa16fd930c39a0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:33:59 2020 -0500

    Remove redundant modifiers like private on enum constructors.
---
 src/main/java/org/apache/commons/net/imap/AuthenticatingIMAPClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/net/imap/AuthenticatingIMAPClient.java b/src/main/java/org/apache/commons/net/imap/AuthenticatingIMAPClient.java
index 916432d..8645500 100644
--- a/src/main/java/org/apache/commons/net/imap/AuthenticatingIMAPClient.java
+++ b/src/main/java/org/apache/commons/net/imap/AuthenticatingIMAPClient.java
@@ -255,7 +255,7 @@ public class AuthenticatingIMAPClient extends IMAPSClient
 
         private final String authName;
 
-        private AUTH_METHOD(final String name){
+        AUTH_METHOD(final String name){
             this.authName=name;
         }
         /**