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-weaver.git
The following commit(s) were added to refs/heads/master by this push: new bde935d Remove redundant modifiers like static on enums. bde935d is described below commit bde935d7851be8fba3a3c23bafa4ba195775d3cf Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 21 12:36:16 2020 -0500 Remove redundant modifiers like static on enums. --- .../java/org/apache/commons/weaver/test/beans/ComplexAnnotations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/src/test/java/org/apache/commons/weaver/test/beans/ComplexAnnotations.java b/processor/src/test/java/org/apache/commons/weaver/test/beans/ComplexAnnotations.java index c6e8b0f..8e4f193 100644 --- a/processor/src/test/java/org/apache/commons/weaver/test/beans/ComplexAnnotations.java +++ b/processor/src/test/java/org/apache/commons/weaver/test/beans/ComplexAnnotations.java @@ -255,7 +255,7 @@ public class ComplexAnnotations { Stooge[] stooges(); } - public static enum Stooge { + public enum Stooge { MOE, LARRY, CURLY, SHEMP, JOE; }