@@ -42,7 +42,7 @@ public static class Builder implements ServerTemplate.Builder {
4242 private KeysAndValues defaultConfig ;
4343 private String cachedTemplate ;
4444 private FirebaseRemoteConfigClient client ;
45-
45+
4646 Builder (FirebaseRemoteConfigClient remoteConfigClient ) {
4747 this .client = remoteConfigClient ;
4848 }
@@ -77,11 +77,11 @@ private ServerTemplateImpl(Builder builder) {
7777 }
7878
7979 @ Override
80- public ServerConfig evaluate (@ Nullable KeysAndValues context )
80+ public ServerConfig evaluate (@ Nullable KeysAndValues context )
8181 throws FirebaseRemoteConfigException {
8282 if (this .cache == null ) {
8383 throw new FirebaseRemoteConfigException (ErrorCode .FAILED_PRECONDITION ,
84- "No Remote Config Server template in cache. Call load() before calling evaluate()." );
84+ "No Remote Config Server template in cache. Call load() before calling evaluate()." );
8585 }
8686
8787 Map <String , Value > configValues = new HashMap <>();
@@ -94,7 +94,7 @@ public ServerConfig evaluate(@Nullable KeysAndValues context)
9494
9595 ConditionEvaluator conditionEvaluator = new ConditionEvaluator ();
9696 ImmutableMap <String , Boolean > evaluatedCondition = ImmutableMap .copyOf (
97- conditionEvaluator .evaluateConditions (cache .getServerConditions (), context ));
97+ conditionEvaluator .evaluateConditions (cache .getServerConditions (), context ));
9898 ImmutableMap <String , Parameter > parameters = ImmutableMap .copyOf (cache .getParameters ());
9999 mergeDerivedConfigValues (evaluatedCondition , parameters , configValues );
100100
0 commit comments