Skip to content

Commit

Permalink
Remove VisibleForTesting annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhoelzl-sap committed Oct 10, 2024
1 parent c29c6be commit 68d3fda
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.cloudfoundry.identity.uaa.oauth.jwt;

import com.google.common.annotations.VisibleForTesting;
import com.nimbusds.jose.Algorithm;
import com.nimbusds.jose.JOSEException;
import com.nimbusds.jose.JWSAlgorithm;
Expand Down Expand Up @@ -75,13 +74,11 @@ public JwtClientAuthentication(KeyInfoService keyInfoService, OidcMetadataFetche
this.oidcMetadataFetcher = oidcMetadataFetcher;
}

@VisibleForTesting
public String getClientAssertion(final OIDCIdentityProviderDefinition config) {
return getClientAssertion(config, false);
}

@VisibleForTesting
String getClientAssertion(
public String getClientAssertion(
OIDCIdentityProviderDefinition config,
final boolean allowDynamicValueLookupInCustomZone
) {
Expand Down

0 comments on commit 68d3fda

Please sign in to comment.