test custom resolving strategy

This commit is contained in:
Andreas Penski (init) 2020-08-17 08:24:06 +02:00
parent bcbb0de09c
commit 4d4aa5ea60
8 changed files with 41 additions and 7 deletions

View file

@ -181,6 +181,9 @@ public class ConfigurationLoader {
* @return this
*/
public ConfigurationLoader setResolvingMode(final ResolvingMode mode) {
if (this.resolvingConfigurationStrategy != null) {
log.warn("Ignoring resolving mode configuration since a custom strategy is already defined");
}
this.resolvingMode = mode;
return this;
}