From 2ebeedd214b61636d6827ba9197eb2455f3a3ad1 Mon Sep 17 00:00:00 2001 From: Herve Boutemy Date: Sun, 27 May 2012 21:31:23 +0000 Subject: [PATCH] removed redundant static modifier git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1343106 13f79535-47bb-0310-9956-ffa450edef68 --- .../plugin/annotations/scanner/MojoAnnotationsScanner.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java index 0a502ea..7ea94c7 100644 --- a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java +++ b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/annotations/scanner/MojoAnnotationsScanner.java @@ -37,11 +37,9 @@ public interface MojoAnnotationsScanner { String ROLE = MojoAnnotationsScanner.class.getName(); - static final List CLASS_LEVEL_ANNOTATIONS = - Arrays.asList( Mojo.class.getName(), Execute.class.getName() ); + final List CLASS_LEVEL_ANNOTATIONS = Arrays.asList( Mojo.class.getName(), Execute.class.getName() ); - static final List FIELD_LEVEL_ANNOTATIONS = - Arrays.asList( Parameter.class.getName(), Component.class.getName() ); + final List FIELD_LEVEL_ANNOTATIONS = Arrays.asList( Parameter.class.getName(), Component.class.getName() ); Map scan( MojoAnnotationsScannerRequest request ) throws ExtractionException;