1 | package fr.sii.ogham.core.builder.env.props; | |
2 | ||
3 | import java.util.Properties; | |
4 | ||
5 | import fr.sii.ogham.core.builder.env.PropertiesBuilder; | |
6 | ||
7 | public class PropsBuilder extends AbstractProps { | |
8 | private final PropertiesBuilder<?> propertiesBuilder; | |
9 | ||
10 | public PropsBuilder(PropertiesBuilder<?> propertiesBuilder, int priority, int index) { | |
11 | super(priority, index); | |
12 | this.propertiesBuilder = propertiesBuilder; | |
13 | } | |
14 | ||
15 | @Override | |
16 | public Properties getProps() { | |
17 |
6
1. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/PropsBuilder::getProps → NO_COVERAGE 2. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/PropsBuilder::getProps → KILLED 3. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/PropsBuilder::getProps → KILLED 4. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/PropsBuilder::getProps → KILLED 5. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/PropsBuilder::getProps → KILLED 6. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/PropsBuilder::getProps → KILLED |
return propertiesBuilder.build(); |
18 | } | |
19 | } | |
Mutations | ||
17 |
1.1 2.2 3.3 4.4 5.5 6.6 |