From 4155f69e3ce15244e96d8d5ba0cba7bbb669ab13 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sun, 7 Jun 2020 11:54:14 -0400 Subject: [PATCH] formatting fixes --- src/iOS.Autofill/CredentialProviderViewController.cs | 8 ++++---- src/iOS.Extension/LoadingViewController.cs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/iOS.Autofill/CredentialProviderViewController.cs b/src/iOS.Autofill/CredentialProviderViewController.cs index d24d38ff9..3564d7834 100644 --- a/src/iOS.Autofill/CredentialProviderViewController.cs +++ b/src/iOS.Autofill/CredentialProviderViewController.cs @@ -54,7 +54,7 @@ namespace Bit.iOS.Autofill } _context.UrlString = uri; } - if (! await IsAuthed()) + if (!await IsAuthed()) { LaunchLoginFlow(); } @@ -78,7 +78,7 @@ namespace Bit.iOS.Autofill public override async void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity) { InitAppIfNeeded(); - if (! await IsAuthed() || await IsLocked()) + if (!await IsAuthed() || await IsLocked()) { var err = new NSError(new NSString("ASExtensionErrorDomain"), Convert.ToInt32(ASExtensionErrorCode.UserInteractionRequired), null); @@ -92,7 +92,7 @@ namespace Bit.iOS.Autofill public override async void PrepareInterfaceToProvideCredential(ASPasswordCredentialIdentity credentialIdentity) { InitAppIfNeeded(); - if (! await IsAuthed()) + if (!await IsAuthed()) { LaunchLoginFlow(); return; @@ -105,7 +105,7 @@ namespace Bit.iOS.Autofill { InitAppIfNeeded(); _context.Configuring = true; - if (! await IsAuthed()) + if (!await IsAuthed()) { LaunchLoginFlow(); return; diff --git a/src/iOS.Extension/LoadingViewController.cs b/src/iOS.Extension/LoadingViewController.cs index 02cac22b3..a76598923 100644 --- a/src/iOS.Extension/LoadingViewController.cs +++ b/src/iOS.Extension/LoadingViewController.cs @@ -71,7 +71,7 @@ namespace Bit.iOS.Extension PerformSegue("setupSegue", this); return; } - if (! await IsAuthed()) + if (!await IsAuthed()) { LaunchLoginFlow(); return;