Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit a7c9aaf

Browse files
authored
Fix if ( fomatting
1 parent a7d66f8 commit a7c9aaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.UI/Helpers/SharedDictionaryManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ public static CachingFactory GetCurrentDomainCachingFactory()
4545
var data = AppDomain.CurrentDomain.GetData(dataName);
4646

4747
var cachingFactory = data as CachingFactory;
48-
if(cachingFactory != null)
48+
if (cachingFactory != null)
4949
{
5050
return cachingFactory;
5151
}
5252

5353
var disposable = data as IDisposable;
54-
if(disposable != null)
54+
if (disposable != null)
5555
{
5656
disposable.Dispose();
5757
}

0 commit comments

Comments
 (0)