Dupont Dupont created FORGE-513:
-----------------------------------
Summary: AnnotationImpl.removeValue(String) does nothing
Key: FORGE-513
URL:
https://issues.jboss.org/browse/FORGE-513
Project: Forge
Issue Type: Bug
Reporter: Dupont Dupont
annotation.removeValue("regex") doesn't remove the attribute regex.
The error is in AnnotationImpl#removeValue(String)
{code}
if (pair.getValue().toString().equals(name))
{code}
should be replaced with somthing like this
{code}
if (pair.getName().toString().equals(name))
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira