Skip to content

Commit a5304ca

Browse files
committed
Correct missing semicolons.
1 parent 187e007 commit a5304ca

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cwbi-auth-http-client/src/main/java/hec/army/usace/hec/cwbi/auth/http/client/OpenIdTokenController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)