Typo fixed
This commit is contained in:
parent
faf59e9d00
commit
10806e57cb
|
@ -7,7 +7,7 @@ import java.util.Map;
|
|||
|
||||
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 = "/";
|
||||
|
||||
|
@ -43,7 +43,7 @@ public class SlashSeparatedContextMapper extends AbstractOIDCToSitesAndRolesMapp
|
|||
}
|
||||
if (siteTokens.length < MINIMUM_TOKENS) {
|
||||
String message = "Found " + siteTokens.length + " tokens only. Minimum should be: " + MINIMUM_TOKENS;
|
||||
if (FAULT_TOLLERANT) {
|
||||
if (FAULT_TOLERANT) {
|
||||
logger.warn(message);
|
||||
continue;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue