Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
Also fix on converter which has an 'sleeping' bug, only manifested now with new converterChoosable structure
  • Loading branch information
robert-bor committed May 9, 2017
1 parent 27928fa commit d852545
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>io.beanmapper</groupId>
<artifactId>beanmapper</artifactId>
<version>0.4.1-SNAPSHOT</version>
<version>0.4.1</version>
<packaging>jar</packaging>
<name>42 Bean Mapper</name>
<description>Easy-to-use bean mapper for conversion from form to object to view</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class NestedSourceClassToNestedTargetClassConverter extends SimpleBeanCon

@Override
protected NestedTargetAbstractClass doConvert(NestedSourceClass source) {
NestedTargetClass target = beanMapper.map(source, NestedTargetClass.class);
NestedTargetClass target = beanMapper.map(source, NestedTargetClass.class, false);
target.laptopNumber = "[" + target.laptopNumber + "]";
return target;
}
Expand Down

0 comments on commit d852545

Please sign in to comment.