Dependency.equals(Object):boolean is missing for version 4.0.0 POMs
-------------------------------------------------------------------

                 Key: MNG-3619
                 URL: http://jira.codehaus.org/browse/MNG-3619
             Project: Maven 2
          Issue Type: Bug
          Components: POM
    Affects Versions: 2.0.x
            Reporter: Dennis Lundberg


The modello file for the 2.0.x branch does not have a <codeSegment> for 4.0.0 
POMs that implements equals(Object):boolean. Modello doesn't generate one 
automatically either. Perhaps upgrading to a newer version of the modello 
plugin will solve this.

http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-model/src/main/mdo/maven.mdo?revision=659677&view=markup

There is a <codeSegment> for 3.0.0 POMs only:
{code}
    /**
     * @see java.lang.Object#equals(java.lang.Object)
     */
    public boolean equals( Object o )
    {
        if ( this == o )
        {
            return true;
        }

        if ( !( o instanceof Dependency ) )
        {
            return false;
        }

        Dependency d  = (Dependency) o;
        return getId().equals( d.getId() );
    }
{code}

-- 
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

        

Reply via email to