diff --git a/config/src/main/java/com/typesafe/config/impl/ResolveContext.java b/config/src/main/java/com/typesafe/config/impl/ResolveContext.java index a6858618..d7fe99bd 100644 --- a/config/src/main/java/com/typesafe/config/impl/ResolveContext.java +++ b/config/src/main/java/com/typesafe/config/impl/ResolveContext.java @@ -140,7 +140,7 @@ final class ResolveContext { } static AbstractConfigValue resolve(AbstractConfigValue value, AbstractConfigObject root, - ConfigResolveOptions options, Path restrictToChildOrNull) { + ConfigResolveOptions options) { ResolveContext context = new ResolveContext(root, options, null /* restrictToChild */); try { @@ -151,9 +151,4 @@ final class ResolveContext { "NotPossibleToResolve was thrown from an outermost resolve", e); } } - - static AbstractConfigValue resolve(AbstractConfigValue value, AbstractConfigObject root, - ConfigResolveOptions options) { - return resolve(value, root, options, null); - } }