Skip to content

Commit 44cc34a

Browse files
[FSSDK-11168] format fix
1 parent c943f08 commit 44cc34a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

OptimizelySDK/Cmab/DefaultCmabService.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* Copyright 2025, Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -167,8 +167,7 @@ private string GetCacheKey(string userId, string ruleId)
167167

168168
private string HashAttributes(UserAttributes attributes)
169169
{
170-
var ordered = attributes.OrderBy(kvp => kvp.Key)
171-
.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
170+
var ordered = attributes.OrderBy(kvp => kvp.Key).ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
172171
var serialized = JsonConvert.SerializeObject(ordered);
173172

174173
using (var md5 = MD5.Create())

OptimizelySDK/Cmab/ICmabService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* Copyright 2025, Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");

OptimizelySDK/OptimizelySDK.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
<Compile Include="Entity\Result.cs"/>
206206
<Compile Include="Notifications\NotificationCenterRegistry.cs"/>
207207
<Compile Include="Cmab\ICmabClient.cs"/>
208-
<Compile Include="Cmab\ICmabService.cs"/>
208+
<Compile Include="Cmab\ICmabService.cs"/>
209209
<Compile Include="Cmab\DefaultCmabClient.cs"/>
210210
<Compile Include="Cmab\DefaultCmabService.cs"/>
211211
<Compile Include="Cmab\CmabRetryConfig.cs"/>

0 commit comments

Comments
 (0)