Remove redundant modifiers like static on enums.
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 @@
         Stooge[] stooges();
     }
 
-    public static enum Stooge {
+    public enum Stooge {
         MOE, LARRY, CURLY, SHEMP, JOE;
     }