From 82060c3cd07a354756fdc0af13f29fafe4332f65 Mon Sep 17 00:00:00 2001 From: Austin Drenski Date: Wed, 7 Feb 2024 21:41:20 -0500 Subject: [PATCH] Fix case typos (oops) Signed-off-by: Austin Drenski --- src/OpenFeature/Model/EvaluationContextBuilder.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenFeature/Model/EvaluationContextBuilder.cs b/src/OpenFeature/Model/EvaluationContextBuilder.cs index d86ad44b..89174cf6 100644 --- a/src/OpenFeature/Model/EvaluationContextBuilder.cs +++ b/src/OpenFeature/Model/EvaluationContextBuilder.cs @@ -140,17 +140,17 @@ public EvaluationContextBuilder Merge(EvaluationContext context) { string newTargetingKey = ""; - if (!string.IsNullOrWhitespace(TargetingKey)) + if (!string.IsNullOrWhiteSpace(TargetingKey)) { newTargetingKey = TargetingKey; } - if (!string.IsNullOrWhitespace(context.TargetingKey)) + if (!string.IsNullOrWhiteSpace(context.TargetingKey)) { newTargetingKey = context.TargetingKey; } - if (!string.IsNullOrWhitespace(newTargetingKey)) + if (!string.IsNullOrWhiteSpace(newTargetingKey)) { this.TargetingKey = newTargetingKey; }