From 15949fcb02090c9098cb844b1983b8316879a934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herbert=20M=C3=BChlburger?= Date: Mon, 11 Sep 2017 13:13:47 +0200 Subject: [PATCH] correct typo in example SecretQuestionAuthenticator --- .../examples/authenticator/SecretQuestionAuthenticator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/providers/authenticator/src/main/java/org/keycloak/examples/authenticator/SecretQuestionAuthenticator.java b/examples/providers/authenticator/src/main/java/org/keycloak/examples/authenticator/SecretQuestionAuthenticator.java index fb71a7c9cf..73d821fbcd 100755 --- a/examples/providers/authenticator/src/main/java/org/keycloak/examples/authenticator/SecretQuestionAuthenticator.java +++ b/examples/providers/authenticator/src/main/java/org/keycloak/examples/authenticator/SecretQuestionAuthenticator.java @@ -47,7 +47,7 @@ public class SecretQuestionAuthenticator implements Authenticator { Cookie cookie = context.getHttpRequest().getHttpHeaders().getCookies().get("SECRET_QUESTION_ANSWERED"); boolean result = cookie != null; if (result) { - System.out.println("Bypassing secret question because cookie as set"); + System.out.println("Bypassing secret question because cookie is set"); } return result; }