Author: kkolinko Date: Mon Nov 4 18:49:49 2013 New Revision: 1538711 URL: http://svn.apache.org/r1538711 Log: Followup to r1538555 Fix a typo in argument name.
Modified: tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java Modified: tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java URL: http://svn.apache.org/viewvc/tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java?rev=1538711&r1=1538710&r2=1538711&view=diff ============================================================================== --- tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java (original) +++ tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java Mon Nov 4 18:49:49 2013 @@ -476,7 +476,7 @@ public abstract class AbstractExecWarMoj } protected void copyDirectoryContentIntoArchive( File sourceFolder, String destinationPath, - ArchiveOutputStream archiveOutputSteam ) + ArchiveOutputStream archiveOutputStream ) throws IOException { @@ -497,9 +497,9 @@ public abstract class AbstractExecWarMoj { sourceFileInputStream = new FileInputStream( inputFile ); - archiveOutputSteam.putArchiveEntry( new JarArchiveEntry( destinationPath + includeFileName ) ); - IOUtils.copy( sourceFileInputStream, archiveOutputSteam ); - archiveOutputSteam.closeArchiveEntry(); + archiveOutputStream.putArchiveEntry( new JarArchiveEntry( destinationPath + includeFileName ) ); + IOUtils.copy( sourceFileInputStream, archiveOutputStream ); + archiveOutputStream.closeArchiveEntry(); } finally { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org