Skip to content

Commit 62127e2

Browse files
committed
Fix lint
1 parent 8841e89 commit 62127e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OptimizelySDK/Event/Builder/EventBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public virtual LogEvent CreateImpressionEvent(ProjectConfig config, Experiment e
244244

245245
var region = !string.IsNullOrEmpty(config.Region) && EventFactory.EventEndpoints.ContainsKey(config.Region) ? config.Region : "US";
246246

247-
var endpoint = EventFactory.EventEndpoints[region]
247+
var endpoint = EventFactory.EventEndpoints[region];
248248

249249
return new LogEvent(endpoint, impressionParams, HTTP_VERB, HTTP_HEADERS);
250250
}
@@ -274,7 +274,7 @@ public virtual LogEvent CreateConversionEvent(ProjectConfig config, string event
274274

275275
var region = !string.IsNullOrEmpty(config.Region) && EventFactory.EventEndpoints.ContainsKey(config.Region) ? config.Region : "US";
276276

277-
var endpoint = EventFactory.EventEndpoints[region]
277+
var endpoint = EventFactory.EventEndpoints[region];
278278

279279
return new LogEvent(endpoint, conversionParams, HTTP_VERB, HTTP_HEADERS);
280280
}

0 commit comments

Comments
 (0)