From 391cc173238c2c37ecd45de0feea923453d1a1b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Jul 2021 00:08:18 +0000 Subject: [PATCH] Automated dotnet-format update --- src/Compatibility/ControlGallery/src/Core/CoreGallery.cs | 2 +- .../Core/src/Android/AppCompat/FormsAppCompatActivity.cs | 2 +- .../src/Core/Platform/GestureManager/GestureManager.Android.cs | 2 +- src/Controls/src/Core/TapGestureRecognizer.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Compatibility/ControlGallery/src/Core/CoreGallery.cs b/src/Compatibility/ControlGallery/src/Core/CoreGallery.cs index e28e12ebdc15..85d933d6d5f9 100644 --- a/src/Compatibility/ControlGallery/src/Core/CoreGallery.cs +++ b/src/Compatibility/ControlGallery/src/Core/CoreGallery.cs @@ -559,7 +559,7 @@ protected override void OnAttachedHandler() { base.OnAttachedHandler(); - if(!registrarValidated) + if (!registrarValidated) ValidateRegistrar(); registrarValidated = true; diff --git a/src/Compatibility/Core/src/Android/AppCompat/FormsAppCompatActivity.cs b/src/Compatibility/Core/src/Android/AppCompat/FormsAppCompatActivity.cs index 9bd6ce5ff0a5..e92d80d404a3 100644 --- a/src/Compatibility/Core/src/Android/AppCompat/FormsAppCompatActivity.cs +++ b/src/Compatibility/Core/src/Android/AppCompat/FormsAppCompatActivity.cs @@ -527,7 +527,7 @@ public static int ToolbarResource return _toolbarResource; } - set => _toolbarResource = value; + set => _toolbarResource = value; } #endregion diff --git a/src/Controls/src/Core/Platform/GestureManager/GestureManager.Android.cs b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Android.cs index 4c9afb7d2f04..2c25c5f1492b 100644 --- a/src/Controls/src/Core/Platform/GestureManager/GestureManager.Android.cs +++ b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Android.cs @@ -158,7 +158,7 @@ void SetupGestures() if (View.GestureRecognizers.Count == 0) { nativeView.Touch -= OnNativeViewTouched; - + } else { diff --git a/src/Controls/src/Core/TapGestureRecognizer.cs b/src/Controls/src/Core/TapGestureRecognizer.cs index 095944c432af..7c072b822e5d 100644 --- a/src/Controls/src/Core/TapGestureRecognizer.cs +++ b/src/Controls/src/Core/TapGestureRecognizer.cs @@ -35,7 +35,7 @@ public int NumberOfTapsRequired } public event EventHandler Tapped; - + internal void SendTapped(View sender) { ICommand cmd = Command;