[jboss-jira] [JBoss JIRA] Updated: (JBAS-5315) Typo in merge method of EJBLocalReferenceMetaData
jaikiran pai (JIRA)
jira-events at lists.jboss.org
Sat Mar 15 05:48:50 EDT 2008
[ http://jira.jboss.com/jira/browse/JBAS-5315?page=all ]
jaikiran pai updated JBAS-5315:
-------------------------------
Attachment: BugFix_JBAS-5315.patch
Patch attached.
> Typo in merge method of EJBLocalReferenceMetaData
> --------------------------------------------------
>
> Key: JBAS-5315
> URL: http://jira.jboss.com/jira/browse/JBAS-5315
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: JBossAS-5.0.0.Beta4
> Environment: JBoss-5.0 Beta4, Sun Java 1.5, Windows 2003
> Reporter: jaikiran pai
> Attachments: BugFix_JBAS-5315.patch
>
>
> 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