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-codec.git
The following commit(s) were added to refs/heads/master by this push:
new a7824cd Remove redundant modifiers like private on enum constructors.
a7824cd is described below
commit a7824cdffa9a1d0d0bb150aed3942f87556ba760
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Nov 21 12:28:37 2020 -0500
Remove redundant modifiers like private on enum constructors.
---
src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
b/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
index 9627873..76f83a7 100644
--- a/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
+++ b/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
@@ -89,7 +89,7 @@ public enum HmacAlgorithms {
private final String name;
- private HmacAlgorithms(final String algorithm) {
+ HmacAlgorithms(final String algorithm) {
this.name = algorithm;
}