formatting

This commit is contained in:
Ryan O'Neill 2015-08-13 15:02:40 -07:00
parent 1ab4def03d
commit 2566973fdd

View File

@ -418,8 +418,7 @@ final class SimpleConfigObject extends AbstractConfigObject implements Serializa
for (ConfigConditional cond: this.conditionals) {
SimpleConfigObject body = cond.resolve(context, sourceWithParent);
AbstractConfigObject resolvedBody = body.resolveSubstitutions(context, source).value;
// if (resolvedBody != SimpleConfigObject.empty())
value = value.mergedWithObject(resolvedBody);
value = value.mergedWithObject(resolvedBody);
}
return ResolveResult.make(modifier.context, value).asObjectResult();