diff --git a/src/OpenFeature/Model/EvaluationContextBuilder.cs b/src/OpenFeature/Model/EvaluationContextBuilder.cs index 223ce743..30e2ffe0 100644 --- a/src/OpenFeature/Model/EvaluationContextBuilder.cs +++ b/src/OpenFeature/Model/EvaluationContextBuilder.cs @@ -136,23 +136,6 @@ public EvaluationContextBuilder Set(string key, DateTime value) /// This builder public EvaluationContextBuilder Merge(EvaluationContext context) { - // string? newTargetingKey = ""; - - // if (!string.IsNullOrWhiteSpace(this.TargetingKey)) - // { - // newTargetingKey = this.TargetingKey; - // } - - // if (!string.IsNullOrWhiteSpace(context.TargetingKey)) - // { - // newTargetingKey = context.TargetingKey; - // } - - // if (!string.IsNullOrWhiteSpace(newTargetingKey)) - // { - // this.TargetingKey = newTargetingKey; - // } - foreach (var kvp in context) { this.Set(kvp.Key, kvp.Value);