1 | package fr.sii.ogham.core.util.bean; | |
2 | ||
3 | // TODO: handle other arguments (delegate, failOnMissingProperty) ? | |
4 | public class MapRecursiveBeanReadWrapperFactory implements BeanReadWrapperFactory { | |
5 | ||
6 | @Override | |
7 | public BeanReadWrapper create(Object bean) { | |
8 |
2
1. create : replaced return value with null for fr/sii/ogham/core/util/bean/MapRecursiveBeanReadWrapperFactory::create → NO_COVERAGE 2. create : replaced return value with null for fr/sii/ogham/core/util/bean/MapRecursiveBeanReadWrapperFactory::create → KILLED |
return new MapBeanReadWrapper(new RecursiveBeanReadWrapper(bean, this)); |
9 | } | |
10 | | |
11 | } | |
Mutations | ||
8 |
1.1 2.2 |