Skip to content

Commit 46214e0

Browse files
author
Joao Antao
committed
Add curly braces around the nested statement in this if block. (#58)
1 parent d50b8b8 commit 46214e0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

BunqSdk/Json/BunqJsonConvert.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ public static class BunqJsonConvert
1616
/// </summary>
1717
private static void Initialize()
1818
{
19-
if (_isInitialized) return;
19+
if (_isInitialized)
20+
{
21+
return;
22+
}
2023

2124
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
2225
{

0 commit comments

Comments
 (0)