Whats your runtime?
- Dozer version: 6.4.0
- OS version: Windows Server 2012 R2
- JDK version: openjdk version "1.8.0_181"
Whats the problem?
Steps to reproduce:
- Source class has this field:
public String[][] Levels;
- Destination class has this field:
private String[][] Levels;
Observed Results:
- Source class field Levels had values but the destination class field Levels remained null after dozer mapping.
- No errors in logs.
Expected Results:
The destination class field Levels should have values equal to the Source class field Levels as a result of dozer mapping.