Skip to content

Commit

Permalink
fix(jans-auth-server): compilation error of server side tests #3363 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed Dec 20, 2022
1 parent 3ccc4a9 commit e83c087
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ private SessionId validateSidRequestParameter(String sid, String postLogoutRedir
return null;
}

private Jwt validateIdTokenHint(String idTokenHint, SessionId sidSession, String postLogoutRedirectUri) {
public Jwt validateIdTokenHint(String idTokenHint, SessionId sidSession, String postLogoutRedirectUri) {
final boolean isIdTokenHintRequired = isTrue(appConfiguration.getForceIdTokenHintPrecense());

if (isIdTokenHintRequired && StringUtils.isBlank(idTokenHint)) { // must be present for logout tests #1279
Expand Down

0 comments on commit e83c087

Please sign in to comment.