Author: hboutemy
Date: Sun May 27 21:31:23 2012
New Revision: 1343106
URL: http://svn.apache.org/viewvc?rev=1343106&view=rev
Log:
removed redundant static modifier
Modified:
maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java
Modified:
maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java
URL:
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java?rev=1343106&r1=1343105&r2=1343106&view=diff
==============================================================================
---
maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java
(original)
+++
maven/plugin-tools/trunk/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java
Sun May 27 21:31:23 2012
@@ -37,11 +37,9 @@ public interface MojoAnnotationsScanner
{
String ROLE = MojoAnnotationsScanner.class.getName();
- static final List<String> CLASS_LEVEL_ANNOTATIONS =
- Arrays.asList( Mojo.class.getName(), Execute.class.getName() );
+ final List<String> CLASS_LEVEL_ANNOTATIONS = Arrays.asList(
Mojo.class.getName(), Execute.class.getName() );
- static final List<String> FIELD_LEVEL_ANNOTATIONS =
- Arrays.asList( Parameter.class.getName(), Component.class.getName() );
+ final List<String> FIELD_LEVEL_ANNOTATIONS = Arrays.asList(
Parameter.class.getName(), Component.class.getName() );
Map<String, MojoAnnotatedClass> scan( MojoAnnotationsScannerRequest
request )
throws ExtractionException;