summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/UriImageSource.cs
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@gmail.com>2016-03-29 13:41:41 -0600
committerE.Z. Hart <hartez@gmail.com>2016-03-29 13:41:41 -0600
commit41ae551eb82072887ff6402bf1eb4a33ec9f1efe (patch)
tree4f1933cef4b5c7bd79b54d4fb0a10cd19f11f577 /Xamarin.Forms.Core/UriImageSource.cs
parent57b0f3ab3080928d2ddd2da58fc84ef7023c3651 (diff)
downloadxamarin-forms-41ae551eb82072887ff6402bf1eb4a33ec9f1efe.tar.gz
xamarin-forms-41ae551eb82072887ff6402bf1eb4a33ec9f1efe.tar.bz2
xamarin-forms-41ae551eb82072887ff6402bf1eb4a33ec9f1efe.zip
Make spacing in lock statement consistent with code style
Diffstat (limited to 'Xamarin.Forms.Core/UriImageSource.cs')
-rw-r--r--Xamarin.Forms.Core/UriImageSource.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Core/UriImageSource.cs b/Xamarin.Forms.Core/UriImageSource.cs
index f6b3ead1..a313f274 100644
--- a/Xamarin.Forms.Core/UriImageSource.cs
+++ b/Xamarin.Forms.Core/UriImageSource.cs
@@ -185,7 +185,7 @@ namespace Xamarin.Forms
{
string key = GetCacheKey(uri);
LockingSemaphore sem;
- lock(s_syncHandle)
+ lock (s_syncHandle)
{
if (s_semaphores.ContainsKey(key))
sem = s_semaphores[key];