| 1 | package fr.sii.ogham.core.builder.env.props; | |
| 2 | ||
| 3 | import java.util.Properties; | |
| 4 | ||
| 5 | public class Props extends AbstractProps { | |
| 6 | private final Properties properties; | |
| 7 | ||
| 8 | public Props(Properties properties, int priority, int index) { | |
| 9 | super(priority, index); | |
| 10 | this.properties = properties; | |
| 11 | } | |
| 12 | ||
| 13 | @Override | |
| 14 | public Properties getProps() { | |
| 15 |
1
1. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → RUN_ERROR |
return properties; |
| 16 | } | |
| 17 | } | |
Mutations | ||
| 15 |
1.1 |