mirror of
https://github.com/lightbend/config.git
synced 2025-02-10 19:40:09 +08:00
Merge pull request #709 from bbaldino/fix_parse_replacement
use correct ParseOptions object
This commit is contained in:
commit
82df5a6b75
@ -1129,8 +1129,8 @@ public final class ConfigFactory {
|
||||
* if none was specified.
|
||||
*/
|
||||
public static java.util.Optional<Config> parseApplicationReplacement(ConfigParseOptions parseOptions) {
|
||||
ensureClassLoader(parseOptions, "parseApplicationReplacement");
|
||||
ClassLoader loader = parseOptions.getClassLoader();
|
||||
final ConfigParseOptions withLoader = ensureClassLoader(parseOptions, "parseApplicationReplacement");
|
||||
ClassLoader loader = withLoader.getClassLoader();
|
||||
|
||||
int specified = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user