[jboss-jira] [JBoss JIRA] Created: (JBMETA-9) Typo in merge method of EJBLocalReferenceMetaData

jaikiran pai (JIRA) jira-events at lists.jboss.org
Thu Mar 20 05:59:51 EDT 2008


Typo in merge method of EJBLocalReferenceMetaData
-------------------------------------------------

                 Key: JBMETA-9
                 URL: http://jira.jboss.com/jira/browse/JBMETA-9
             Project: JBoss Metadata
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: 1.0.0.Beta6
         Environment: JBoss-5.0 Beta4, Sun Java 1.5, Windows 2003
            Reporter: jaikiran pai
         Assigned To: Alexey Loubyansky


I first reported this in JBAS-5315, unaware that JBossMetadata project had a separate JIRA. 

While debugging one of the issues in a sample application deployed on JBoss-5.0 Beta4, i happened to see the merge(EJBLocalReferenceMetaData override, EJBLocalReferenceMetaData original) method of org.jboss.metadata.javaee.support.MergeableMappedMetaData.EJBLocalReferenceMetaData. There appears to be a typo in this method:

 if (override != null && override.local != null)
         setLocal(local);

This should have been:

 if (override != null && override.local != null)
         setLocal(override.local);


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

        



More information about the jboss-jira mailing list