Skip to content

Commit 742014d

Browse files
committed
Fix inconsistent line endings warning
1 parent dc91f8b commit 742014d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Runtime/Client/GetRequests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public bool ShouldSerializegetRequests()
1818
{
1919
// don't serialize the getRequests property.
2020
return false;
21-
}
21+
}
2222
#endif
2323
}
2424
}

Runtime/Client/LootLockerBaseServerAPI.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ public ObfuscationDetails(string key, char replacementChar = '*', int visibleCha
369369
};
370370

371371
private static string ObfuscateJsonStringForLogging(string json)
372-
{
372+
{
373373
#if LOOTLOCKER_USE_NEWTONSOFTJSON
374374
if (string.IsNullOrEmpty(json))
375375
{
@@ -503,7 +503,7 @@ private static string ObfuscateJsonStringForLogging(string json)
503503
}
504504
}
505505

506-
return LootLockerJson.SerializeObject(jsonObject);
506+
return LootLockerJson.SerializeObject(jsonObject);
507507
#endif //LOOTLOCKER_USE_NEWTONSOFTJSON
508508
}
509509

Runtime/Client/LootLockerServerRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static class LootLockerJsonSettings
3030
}
3131

3232
public static class LootLockerJson
33-
{
33+
{
3434
#if LOOTLOCKER_USE_NEWTONSOFTJSON
3535
public static string SerializeObject(object obj)
3636
{

Runtime/Game/Requests/PlayerRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ public class LootLockerPlayerFile : LootLockerResponse
206206
public string revision_id { get; set; }
207207
public string name { get; set; }
208208
public int size { get; set; }
209-
public string purpose { get; set; }
210-
209+
public string purpose { get; set; }
210+
211211
#if LOOTLOCKER_USE_NEWTONSOFTJSON
212212
[JsonProperty("public")]
213213
#else

0 commit comments

Comments
 (0)