mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
remove base calls
This commit is contained in:
parent
d957111249
commit
cb2d133eb0
1 changed files with 0 additions and 4 deletions
|
@ -55,7 +55,6 @@ namespace Bit.iOS.Autofill
|
||||||
{
|
{
|
||||||
_context.ServiceIdentifiers = serviceIdentifiers;
|
_context.ServiceIdentifiers = serviceIdentifiers;
|
||||||
_context.UrlString = serviceIdentifiers[0].Identifier;
|
_context.UrlString = serviceIdentifiers[0].Identifier;
|
||||||
base.PrepareCredentialList(serviceIdentifiers);
|
|
||||||
|
|
||||||
var authService = Resolver.Resolve<IAuthService>();
|
var authService = Resolver.Resolve<IAuthService>();
|
||||||
if(!authService.IsAuthenticated)
|
if(!authService.IsAuthenticated)
|
||||||
|
@ -89,8 +88,6 @@ namespace Bit.iOS.Autofill
|
||||||
|
|
||||||
public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity)
|
public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity)
|
||||||
{
|
{
|
||||||
// base.ProvideCredentialWithoutUserInteraction(credentialIdentity);
|
|
||||||
|
|
||||||
bool canGetCredentials = false;
|
bool canGetCredentials = false;
|
||||||
var authService = Resolver.Resolve<IAuthService>();
|
var authService = Resolver.Resolve<IAuthService>();
|
||||||
if(authService.IsAuthenticated)
|
if(authService.IsAuthenticated)
|
||||||
|
@ -146,7 +143,6 @@ namespace Bit.iOS.Autofill
|
||||||
|
|
||||||
public override void PrepareInterfaceForExtensionConfiguration()
|
public override void PrepareInterfaceForExtensionConfiguration()
|
||||||
{
|
{
|
||||||
base.PrepareInterfaceForExtensionConfiguration();
|
|
||||||
var authService = Resolver.Resolve<IAuthService>();
|
var authService = Resolver.Resolve<IAuthService>();
|
||||||
if (authService.IsAuthenticated)
|
if (authService.IsAuthenticated)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue