Author: dennisl Date: Fri Jan 7 22:32:03 2011 New Revision: 1056547 URL: http://svn.apache.org/viewvc?rev=1056547&view=rev Log: o Fix typo.
Modified: maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/changes/ChangesMojo.java Modified: maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/changes/ChangesMojo.java URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/changes/ChangesMojo.java?rev=1056547&r1=1056546&r2=1056547&view=diff ============================================================================== --- maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/changes/ChangesMojo.java (original) +++ maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/changes/ChangesMojo.java Fri Jan 7 22:32:03 2011 @@ -274,11 +274,11 @@ public class ChangesMojo Date now = new Date(); SimpleDateFormat simpleDateFormat = new SimpleDateFormat( publishDateFormat, new Locale( publishDateLocale ) ); - Properties additionnalProperties = new Properties(); - additionnalProperties.put( "publishDate", simpleDateFormat.format( now ) ); + Properties additionalProperties = new Properties(); + additionalProperties.put( "publishDate", simpleDateFormat.format( now ) ); MavenFileFilterRequest mavenFileFilterRequest = new MavenFileFilterRequest( xmlPath, resultFile, true, project, Collections.EMPTY_LIST, false, - encoding, session, additionnalProperties ); + encoding, session, additionalProperties ); mavenFileFilter.copyFile( mavenFileFilterRequest ); xmlPath = resultFile; }