From 7f0056cf13eaa54001691e7395a964d4339e6231 Mon Sep 17 00:00:00 2001 From: Oded Ben-Ozer Date: Fri, 25 Aug 2023 14:11:16 +0200 Subject: [PATCH] Fix lint issue Signed-off-by: Oded Ben-Ozer --- connector/oidc/oidc.go | 1 - 1 file changed, 1 deletion(-) diff --git a/connector/oidc/oidc.go b/connector/oidc/oidc.go index 30b759ce97..2b29284272 100644 --- a/connector/oidc/oidc.go +++ b/connector/oidc/oidc.go @@ -457,7 +457,6 @@ func (c *oidcConnector) createIdentity(ctx context.Context, identity connector.I for _, claimName := range newGroupsElementConfig.ClaimList { // Non string claim value are ignored, concatenating them doesn't really make any sense if claimValue, ok := claims[claimName].(string); ok { - if newGroupsElementConfig.ClearDelimiter { // Removing the delimiier string from the concatenated claim to ensure resulting claim structure // is in full control of Dex operator