Skip to content

Commit

Permalink
Removed unused argument from FederatedAuthenticator.CreateClientAppli…
Browse files Browse the repository at this point in the history
…cation
  • Loading branch information
Tracy Boehrer committed Sep 9, 2024
1 parent eb48570 commit bd2b3f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public FederatedAuthenticator(string appId, string clientId, string authority, s
_scope = scope;
_clientId = clientId;
_logger = logger ?? NullLogger.Instance;
_clientApplication = CreateClientApplication(appId, authority, customHttpClient);
_clientApplication = CreateClientApplication(appId, customHttpClient);
_managedIdentityClientAssertion = new ManagedIdentityClientAssertion(_clientId);
}

Expand Down Expand Up @@ -109,7 +109,7 @@ private RetryParams HandleTokenProviderException(Exception e, int retryCount)
return RetryParams.DefaultBackOff(retryCount);
}

private IConfidentialClientApplication CreateClientApplication(string appId, string authority, HttpClient customHttpClient = null)
private IConfidentialClientApplication CreateClientApplication(string appId, HttpClient customHttpClient = null)
{
_logger.LogDebug($"CreateClientApplication for appId={appId}");

Expand Down

0 comments on commit bd2b3f1

Please sign in to comment.