Author: bentmann Date: Mon Jul 13 00:08:52 2009 New Revision: 793436 URL: http://svn.apache.org/viewvc?rev=793436&view=rev Log: o Polished code
Modified: maven/sandbox/trunk/plugins/maven-jarsigner-plugin/src/main/java/org/apache/maven/plugins/jarsigner/AbstractJarsignerMojo.java Modified: maven/sandbox/trunk/plugins/maven-jarsigner-plugin/src/main/java/org/apache/maven/plugins/jarsigner/AbstractJarsignerMojo.java URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-jarsigner-plugin/src/main/java/org/apache/maven/plugins/jarsigner/AbstractJarsignerMojo.java?rev=793436&r1=793435&r2=793436&view=diff ============================================================================== --- maven/sandbox/trunk/plugins/maven-jarsigner-plugin/src/main/java/org/apache/maven/plugins/jarsigner/AbstractJarsignerMojo.java (original) +++ maven/sandbox/trunk/plugins/maven-jarsigner-plugin/src/main/java/org/apache/maven/plugins/jarsigner/AbstractJarsignerMojo.java Mon Jul 13 00:08:52 2009 @@ -23,7 +23,6 @@ import java.io.InputStream; import java.text.MessageFormat; import java.util.Iterator; -import java.util.MissingResourceException; import java.util.ResourceBundle; import org.apache.maven.artifact.Artifact; @@ -55,7 +54,7 @@ private boolean verbose; /** - * Archive to sign. If set, neither the project artifact nor any attachments are processed. + * Archive to process. If set, neither the project artifact nor any attachments are processed. * * @parameter expression="${jarsigner.archive}" * @optional @@ -336,8 +335,8 @@ * @return The message with key {...@code key} from the resource bundle backing the implementation. * * @throws NullPointerException if {...@code key} is {...@code null}. - * @throws MissingResourceException if there is no message available matching {...@code key} or accessing the resource - * bundle fails. + * @throws java.util.MissingResourceException if there is no message available matching {...@code key} or accessing + * the resource bundle fails. */ private String getMessage( final String key, final Object[] args ) {