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 <[email protected]>
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;
}
/**