Skip to content

Commit

Permalink
fixes DozerMapper#180 : a lost object reference while mapping Maps wi…
Browse files Browse the repository at this point in the history
…th custom parameter mappings
  • Loading branch information
maybeec committed Jul 28, 2014
1 parent 997258e commit 10c0b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/dozer/MappingProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private void map(ClassMap classMap, Object srcObj, Object destObj, boolean bypas
Class<?> converterClass = MappingUtils.findCustomConverter(converterByDestTypeCache, classMap.getCustomConverters(), srcClass,
destClass);
if (converterClass != null) {
mapUsingCustomConverter(converterClass, srcClass, srcObj, destClass, destObj, null, true);
destObj = mapUsingCustomConverter(converterClass, srcClass, srcObj, destClass, destObj, null, true);
return;
}

Expand Down

0 comments on commit 10c0b5e

Please sign in to comment.