Author: agudian
Date: Sat Feb  6 18:11:24 2016
New Revision: 1728863

URL: http://svn.apache.org/viewvc?rev=1728863&view=rev
Log:
Fix some javadoc issues reported in JDK8

Modified:
    
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
    
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java

Modified: 
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java?rev=1728863&r1=1728862&r2=1728863&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
 Sat Feb  6 18:11:24 2016
@@ -1273,10 +1273,9 @@ public abstract class AbstractCompilerMo
     }
 
     /**
-     * We just compare the timestamps of all local dependency files 
(inter-module dependency classpath)
-     * and the own generated classes
-     * and if we got a file which is >= the buid-started timestamp, then we 
catched a file which got
-     * changed during this build.
+     * We just compare the timestamps of all local dependency files 
(inter-module dependency classpath) and the own
+     * generated classes and if we got a file which is >= the buid-started 
timestamp, then we catched a file which
+     * got changed during this build.
      *
      * @return <code>true</code> if at least one single dependency has changed.
      */

Modified: 
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java?rev=1728863&r1=1728862&r2=1728863&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java
 (original)
+++ 
maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java
 Sat Feb  6 18:11:24 2016
@@ -26,7 +26,6 @@ import java.util.List;
 
 /**
  * @author <a href="mailto:ja...@maven.org";>Jason van Zyl</a>
- * @version $Id$
  * @since 2.0
  */
 @SuppressWarnings( "serial" )
@@ -57,7 +56,7 @@ public class CompilationFailureException
     /**
      * Short message will have the error message if there's only one, useful 
for errors forking the compiler
      *
-     * @param messages
+     * @param messages the messages
      * @return the short error message
      * @since 2.0.2
      */
@@ -75,7 +74,7 @@ public class CompilationFailureException
 
             sb.append( compilerError ).append( LS );
         }
-        
+
         return sb.toString();
     }
 }


Reply via email to