mirror of
https://github.com/lightbend/config.git
synced 2025-01-15 23:01:05 +08:00
fix some indentation that Eclipse messed up
This commit is contained in:
parent
817bbb73eb
commit
5f6f718566
@ -85,16 +85,14 @@ final class ConfigSubstitution extends AbstractConfigValue implements
|
||||
|
||||
private ConfigValue findInObject(AbstractConfigObject root,
|
||||
SubstitutionResolver resolver, /* null if we should not have refs */
|
||||
Path subst, int depth,
|
||||
ConfigResolveOptions options) {
|
||||
Path subst, int depth, ConfigResolveOptions options) {
|
||||
if (depth > MAX_DEPTH) {
|
||||
throw new ConfigException.BadValue(origin(), subst.render(),
|
||||
"Substitution ${" + subst.render()
|
||||
+ "} is part of a cycle of substitutions");
|
||||
}
|
||||
|
||||
ConfigValue result = root.peekPath(subst, resolver, depth,
|
||||
options);
|
||||
ConfigValue result = root.peekPath(subst, resolver, depth, options);
|
||||
|
||||
if (result instanceof ConfigSubstitution) {
|
||||
throw new ConfigException.BugOrBroken(
|
||||
|
Loading…
Reference in New Issue
Block a user