From 5f6f71856682d99b04e570d78b3b26e7035de80e Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Thu, 17 Nov 2011 00:50:47 -0500 Subject: [PATCH] fix some indentation that Eclipse messed up --- .../java/com/typesafe/config/impl/ConfigSubstitution.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/typesafe/config/impl/ConfigSubstitution.java b/src/main/java/com/typesafe/config/impl/ConfigSubstitution.java index ff1350d6..4b399d25 100644 --- a/src/main/java/com/typesafe/config/impl/ConfigSubstitution.java +++ b/src/main/java/com/typesafe/config/impl/ConfigSubstitution.java @@ -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(