Typo fixed

This commit is contained in:
Mauro Mugnaini 2020-06-26 18:15:05 +02:00
parent faf59e9d00
commit 10806e57cb
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import java.util.Map;
public class SlashSeparatedContextMapper extends AbstractOIDCToSitesAndRolesMapper { public class SlashSeparatedContextMapper extends AbstractOIDCToSitesAndRolesMapper {
private static final Boolean FAULT_TOLLERANT = Boolean.TRUE; private static final Boolean FAULT_TOLERANT = Boolean.TRUE;
private static final String SPLIT_REGEXP = "/"; private static final String SPLIT_REGEXP = "/";
@ -43,7 +43,7 @@ public class SlashSeparatedContextMapper extends AbstractOIDCToSitesAndRolesMapp
} }
if (siteTokens.length < MINIMUM_TOKENS) { if (siteTokens.length < MINIMUM_TOKENS) {
String message = "Found " + siteTokens.length + " tokens only. Minimum should be: " + MINIMUM_TOKENS; String message = "Found " + siteTokens.length + " tokens only. Minimum should be: " + MINIMUM_TOKENS;
if (FAULT_TOLLERANT) { if (FAULT_TOLERANT) {
logger.warn(message); logger.warn(message);
continue; continue;
} else { } else {