@@ -28,7 +28,7 @@ public abstract class OpenIdTokenController {
2828
2929 public final ApiConnectionInfo retrieveTokenUrl (ApiConnectionInfo apiConnectionInfo , SslSocketData sslSocketData ) throws IOException {
3030 if (tokenEndpoint == null ) {
31- String wellKnownEndpoint = retrieveWellKnownEndpoint (apiConnectionInfo )
31+ String wellKnownEndpoint = retrieveWellKnownEndpoint (apiConnectionInfo );
3232
3333 ApiConnectionInfo wellKnownApiConnectionInfo = new ApiConnectionInfoBuilder (wellKnownEndpoint )
3434 .withSslSocketData (sslSocketData )
@@ -37,7 +37,7 @@ public final ApiConnectionInfo retrieveTokenUrl(ApiConnectionInfo apiConnectionI
3737 .get ()
3838 .withMediaType (ACCEPT_HEADER );
3939 try (HttpRequestResponse response = executor .execute ()) {
40- tokenEndpoint = OAuth2ObjectMapper .getValueForKey (response .getBody (), TOKEN_ENDPOINT_KEY )
40+ tokenEndpoint = OAuth2ObjectMapper .getValueForKey (response .getBody (), TOKEN_ENDPOINT_KEY );
4141 }
4242 }
4343 return new ApiConnectionInfoBuilder (tokenEndpoint )
@@ -48,7 +48,7 @@ public final ApiConnectionInfo retrieveTokenUrl(ApiConnectionInfo apiConnectionI
4848 public final ApiConnectionInfo retrieveAuthUrl (ApiConnectionInfo apiConnectionInfo , SslSocketData sslSocketData ) throws IOException {
4949
5050 if (authEndpoint == null ) {
51- String wellKnownEndpoint = retrieveWellKnownEndpoint (apiConnectionInfo )
51+ String wellKnownEndpoint = retrieveWellKnownEndpoint (apiConnectionInfo );
5252 ApiConnectionInfo wellKnownApiConnectionInfo = new ApiConnectionInfoBuilder (wellKnownEndpoint )
5353 .withSslSocketData (sslSocketData )
5454 .build ();
0 commit comments