Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.8
-
Component/s: None
-
Labels:None
-
Environment:(am using a 1.6-SNAPSHOT)
-
Number of attachments :
Description
While the private getBeanPropertyMap method uses an OrderedMap and thus can problably be trusted, I suspect the culprit lies in the getMethods(boolean) method, which uses an HashSet to store method sigs...
Activity
Paul Hammant
made changes -
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | Closed [ 6 ] |
Fix Version/s | 1.8 [ 14826 ] | |
Resolution | Fixed [ 1 ] | |
Assignee | Paul Hammant [ paul ] |
The major problem is that
private Map getBeanPropertyMap(boolean)
returns a Map, which is unordered.
For the order to be preserved it'd need to return an OrderedMap.