Controls deserialization broken because it's looking for the wrong delimiter
----------------------------------------------------------------------------

         Key: BEEHIVE-829
         URL: http://issues.apache.org/jira/browse/BEEHIVE-829
     Project: Beehive
        Type: Bug
  Components: Controls  
    Versions: v1m1    
    Reporter: Kenneth Tam
 Assigned to: Kenneth Tam 
    Priority: Critical


Controls deserialization has a rather nasty bug where we're looking for the 
wrong delimiter.  To wit, in AnnotatedElementMap.readObject():
---
            int argsIndex = _elemDesc.indexOf('/');
            if (argsIndex < 0)  // element is a Field
---
should actually be:
---
            int argsIndex = _elemDesc.indexOf('(');
            if (argsIndex < 0)  // element is a Field
---

This basically means that controls serialization is broken in a fair number of 
cases (mostly extensible controls).



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

Reply via email to