David Leangen created FELIX-5330:
------------------------------------
Summary: Double fields in Map if superclass shares a field name
Key: FELIX-5330
URL: https://issues.apache.org/jira/browse/FELIX-5330
Project: Felix
Issue Type: Bug
Components: Converter
Reporter: David Leangen
If a DTO inherits from an superclass, and both the DTO and the superclass have
a field with the same name, then a converted map has two fields with that name.
Example:
{code}
MyDTOSuper extends DTO {
public String data;
}
MyDTOChild extends MyDTOSuper {
public String data;
}
MyDTOChild dto = new MyDTOChild();
dto.data = "howdy!";
{code}
When converted to Map, it will have 2 fields named "data", one with the value
"howdy!", the other with a null value.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)