[
http://jira.jboss.com/jira/browse/JBAS-5315?page=all ]
jaikiran pai closed JBAS-5315.
------------------------------
Resolution: Duplicate Issue
Reported this in JBossMetadata project (JBMETA-9), which seems to be more appropriate
place for this issue.
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