| 1 | package fr.sii.ogham.core.builder.env.props; | |
| 2 | ||
| 3 | import java.util.Properties; | |
| 4 | ||
| 5 | public abstract class AbstractProps { | |
| 6 | protected final int priority; | |
| 7 | protected final int index; | |
| 8 | ||
| 9 | protected AbstractProps(int priority, int index) { | |
| 10 | this.priority = priority; | |
| 11 | this.index = index; | |
| 12 | } | |
| 13 | ||
| 14 | public abstract Properties getProps(); | |
| 15 | ||
| 16 | public int getPriority() { | |
| 17 |
1
1. getPriority : replaced int return with 0 for fr/sii/ogham/core/builder/env/props/AbstractProps::getPriority → RUN_ERROR |
return priority; |
| 18 | } | |
| 19 | ||
| 20 | public int getIndex() { | |
| 21 |
1
1. getIndex : replaced int return with 0 for fr/sii/ogham/core/builder/env/props/AbstractProps::getIndex → RUN_ERROR |
return index; |
| 22 | } | |
| 23 | } | |
Mutations | ||
| 17 |
1.1 |
|
| 21 |
1.1 |