From b3365b7f7db2ab9505d9f0c704f86dd3b24b0caa Mon Sep 17 00:00:00 2001 From: Chris King Date: Fri, 25 Mar 2016 13:53:19 -0700 Subject: Reformat using statements --- Xamarin.Forms.Platform.Android/ResourcesProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Xamarin.Forms.Platform.Android/ResourcesProvider.cs') diff --git a/Xamarin.Forms.Platform.Android/ResourcesProvider.cs b/Xamarin.Forms.Platform.Android/ResourcesProvider.cs index 334ef56a..5c7e1de3 100644 --- a/Xamarin.Forms.Platform.Android/ResourcesProvider.cs +++ b/Xamarin.Forms.Platform.Android/ResourcesProvider.cs @@ -27,12 +27,12 @@ namespace Xamarin.Forms.Platform.Android global::Android.Graphics.Color androidColor = defaultColor; Context context = Forms.Context; - using(var value = new TypedValue()) + using (var value = new TypedValue()) { if (context.Theme.ResolveAttribute(style, value, true)) { var styleattrs = new[] { global::Android.Resource.Attribute.TextSize, global::Android.Resource.Attribute.FontFamily, global::Android.Resource.Attribute.TextColor }; - using(TypedArray array = context.ObtainStyledAttributes(value.ResourceId, styleattrs)) + using (TypedArray array = context.ObtainStyledAttributes(value.ResourceId, styleattrs)) { fontSize = context.FromPixels(array.GetDimensionPixelSize(0, -1)); fontFamily = array.GetString(1); -- cgit v1.2.3