You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm-dev@maven.apache.org by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org> on 2006/03/07 12:08:22 UTC

[jira] Closed: (SCM-171) Incorrect xml changeLog generated if no endDate (toXML method in ChangeLogSet)

     [ http://jira.codehaus.org/browse/SCM-171?page=all ]
     
Emmanuel Venisse closed SCM-171:
--------------------------------

      Assign To: Emmanuel Venisse
     Resolution: Fixed
    Fix Version: 1.0

Applied and deployed. Thanks

> Incorrect xml changeLog generated if no endDate (toXML method in ChangeLogSet)
> ------------------------------------------------------------------------------
>
>          Key: SCM-171
>          URL: http://jira.codehaus.org/browse/SCM-171
>      Project: Maven SCM
>         Type: Bug

>   Components: maven-scm-api
>  Environment: all
>     Reporter: Olivier Lamy
>     Assignee: Emmanuel Venisse
>      Fix For: 1.0

>
>
> The method toXML in http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/changelog/ChangeLogSet.java?rev=374372&view=markup
> generate a bad xml if the end date is not specified.
> The lines :
>         if ( endDate != null )
>         {
>             buffer.append( " end=\"" )
>                 .append( formatter.format( endDate ) )
>                 .append( "\">" );
>         }
>         buffer.append( "\n" );
> should be :
>         if ( endDate != null )
>         {
>             buffer.append( " end=\"" )
>                 .append( formatter.format( endDate ) )
>                 .append( "\"" );
>         }
>         buffer.append( ">\n" );

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira