Fix some javadoc issues reported in JDK8

git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@1728863 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
index 4ec073a..064887a 100644
--- a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
+++ b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
@@ -1273,10 +1273,9 @@
     }
 
     /**
-     * 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.
      */
diff --git a/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java b/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java
index 854d73f..b231c8e 100644
--- a/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java
+++ b/src/main/java/org/apache/maven/plugin/compiler/CompilationFailureException.java
@@ -26,7 +26,6 @@
 
 /**
  * @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
- * @version $Id$
  * @since 2.0
  */
 @SuppressWarnings( "serial" )
@@ -57,7 +56,7 @@
     /**
      * 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 @@
 
             sb.append( compilerError ).append( LS );
         }
-        
+
         return sb.toString();
     }
 }