You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2014/12/06 22:29:28 UTC

svn commit: r1643616 - /maven/plugins/trunk/maven-assembly-plugin/src/main/java/org/apache/maven/plugin/assembly/format/ReaderFormatter.java

Author: khmarbaise
Date: Sat Dec  6 21:29:28 2014
New Revision: 1643616

URL: http://svn.apache.org/r1643616
Log:
Fixed checkstyle problem to fix the build.

Modified:
    maven/plugins/trunk/maven-assembly-plugin/src/main/java/org/apache/maven/plugin/assembly/format/ReaderFormatter.java

Modified: maven/plugins/trunk/maven-assembly-plugin/src/main/java/org/apache/maven/plugin/assembly/format/ReaderFormatter.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/main/java/org/apache/maven/plugin/assembly/format/ReaderFormatter.java?rev=1643616&r1=1643615&r2=1643616&view=diff
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/main/java/org/apache/maven/plugin/assembly/format/ReaderFormatter.java (original)
+++ maven/plugins/trunk/maven-assembly-plugin/src/main/java/org/apache/maven/plugin/assembly/format/ReaderFormatter.java Sat Dec  6 21:29:28 2014
@@ -104,9 +104,9 @@ public class ReaderFormatter
     {
         if ( isForbiddenFiletypes( plexusIoResource ) )
         {
-            throw new IOException( "Cannot transform line endings on this kind of file: " + plexusIoResource.getName() +
-                                       "\nDoing so is more or less guaranteed to destroy the file, and it indicates a "
-                                       + "problem with your assembly descriptor."
+            throw new IOException( "Cannot transform line endings on this kind of file: " + plexusIoResource.getName()
+                                       + "\nDoing so is more or less guaranteed to destroy the file, and it indicates"
+                                       + " a problem with your assembly descriptor."
                                        + "\nThis error message is new as of 2.5.3. "
                                        + "\nEarlier versions of assembly-plugin will silently destroy your file. "
                                        + "Fix your descriptor" );