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:36:20 UTC

[commons-weaver] branch master updated: Remove redundant modifiers like static on enums.

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 <ga...@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;
     }