KEYCLOAK-7854: Tiny typo in ExampleServiceImpl.java

This commit is contained in:
Juravenator 2018-07-11 17:23:51 +02:00 committed by Bruno Oliveira da Silva
parent f022bc1269
commit fbbc670d1f

View file

@ -36,7 +36,7 @@ public class ExampleServiceImpl implements ExampleService {
public ExampleServiceImpl(KeycloakSession session) {
this.session = session;
if (getRealm() == null) {
throw new IllegalStateException("The service cannot accept a session without a realm in it's context.");
throw new IllegalStateException("The service cannot accept a session without a realm in its context.");
}
}