Skip to content

Commit 95bd89d

Browse files
author
joel.tazzari
committed
Fix formatting issue
1 parent 400bd09 commit 95bd89d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/user-authenticators/oauth2/src/main/java/org/apache/cloudstack/oauth2/keycloak/KeycloakOAuth2Provider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ public String verifyCodeAndFetchEmail(String secretCode) {
132132
JsonObject json = JsonParser.parseString(body).getAsJsonObject();
133133
JsonElement fetchedIdToken = json.get("id_token");
134134
if (fetchedIdToken == null) {
135-
throw new CloudRuntimeException("No id_token found in token");
135+
throw new CloudRuntimeException("No id_token found in token");
136136
}
137-
String idTokenAsString = fetchedIdToken.getAsString();
137+
String idTokenAsString = fetchedIdToken.getAsString();
138138
validateIdToken(idTokenAsString , provider);
139139

140140
this.idToken = idTokenAsString ;

0 commit comments

Comments
 (0)