removed redundant static modifier

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1343106 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2012-05-27 21:31:23 +00:00
parent 328f9208db
commit 2ebeedd214
1 changed files with 2 additions and 4 deletions

View File

@ -37,11 +37,9 @@ public interface MojoAnnotationsScanner
{ {
String ROLE = MojoAnnotationsScanner.class.getName(); String ROLE = MojoAnnotationsScanner.class.getName();
static final List<String> CLASS_LEVEL_ANNOTATIONS = final List<String> CLASS_LEVEL_ANNOTATIONS = Arrays.asList( Mojo.class.getName(), Execute.class.getName() );
Arrays.asList( Mojo.class.getName(), Execute.class.getName() );
static final List<String> FIELD_LEVEL_ANNOTATIONS = final List<String> FIELD_LEVEL_ANNOTATIONS = Arrays.asList( Parameter.class.getName(), Component.class.getName() );
Arrays.asList( Parameter.class.getName(), Component.class.getName() );
Map<String, MojoAnnotatedClass> scan( MojoAnnotationsScannerRequest request ) Map<String, MojoAnnotatedClass> scan( MojoAnnotationsScannerRequest request )
throws ExtractionException; throws ExtractionException;