| 1 | package fr.sii.ogham.spring.common; | |
| 2 | ||
| 3 | import org.springframework.boot.context.properties.NestedConfigurationProperty; | |
| 4 | ||
| 5 | public class OghamResolutionProperties extends PrefixSuffixProperties { | |
| 6 | @NestedConfigurationProperty | |
| 7 | private PrefixSuffixProperties classpath = new PrefixSuffixProperties(); | |
| 8 | @NestedConfigurationProperty | |
| 9 | private PrefixSuffixProperties file = new PrefixSuffixProperties(); | |
| 10 | ||
| 11 | public PrefixSuffixProperties getClasspath() { | |
| 12 |
1
1. getClasspath : replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getClasspath → RUN_ERROR |
return classpath; |
| 13 | } | |
| 14 | ||
| 15 | public void setClasspath(PrefixSuffixProperties classpath) { | |
| 16 | this.classpath = classpath; | |
| 17 | } | |
| 18 | ||
| 19 | public PrefixSuffixProperties getFile() { | |
| 20 |
1
1. getFile : replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getFile → RUN_ERROR |
return file; |
| 21 | } | |
| 22 | ||
| 23 | public void setFile(PrefixSuffixProperties file) { | |
| 24 | this.file = file; | |
| 25 | } | |
| 26 | ||
| 27 | } | |
Mutations | ||
| 12 |
1.1 |
|
| 20 |
1.1 |