
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
12/Sep/05 05:18 AM
|
|
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).
|
|
Description
|
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).
|
Show » |
|