You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "David Bosschaert (JIRA)" <ji...@apache.org> on 2016/08/22 09:12:20 UTC

[jira] [Resolved] (FELIX-5330) Double fields in Map if superclass shares a field name

     [ https://issues.apache.org/jira/browse/FELIX-5330?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Bosschaert resolved FELIX-5330.
-------------------------------------
    Resolution: Fixed

Thanks [~dleangen] for reporting the issue. 
The following commit should fix it: https://svn.apache.org/viewvc?view=revision&revision=1757121

> 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
>            Assignee: David Bosschaert
>
> 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)