format

git-svn-id: https://svn.apache.org/repos/asf/tomcat/maven-plugin/trunk@1635635 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java b/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
index 887655e..6f011c9 100644
--- a/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
+++ b/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
@@ -565,8 +565,9 @@
             {
                 sourceFileInputStream = new FileInputStream( inputFile );
 
-                // MTOMCAT-286 Need to replace \ with / in includeFileName

-                archiveOutputStream.putArchiveEntry( new JarArchiveEntry( destinationPath + StringUtils.replace( includeFileName, "\\", "/" ) ) );

+                // MTOMCAT-286 Need to replace \ with / in includeFileName
+                archiveOutputStream.putArchiveEntry(
+                    new JarArchiveEntry( destinationPath + StringUtils.replace( includeFileName, "\\", "/" ) ) );
                 IOUtils.copy( sourceFileInputStream, archiveOutputStream );
                 archiveOutputStream.closeArchiveEntry();
             }