From c6f6dd69e91b52d2c57f3bdea53cff09b4c412e5 Mon Sep 17 00:00:00 2001 From: ariary Date: Wed, 15 Sep 2021 03:58:27 -0400 Subject: [PATCH] lint comment Signed-off-by: ariary --- server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/server.go b/server/server.go index 094eb518..619a358f 100755 --- a/server/server.go +++ b/server/server.go @@ -221,7 +221,7 @@ func newServer(ctx context.Context, c Config, rotationStrategy rotationStrategy) supportedRes[respType] = true } - supportedGrant := []string{grantTypeAuthorizationCode, grantTypeRefreshToken, grantTypeDeviceCode} //default + supportedGrant := []string{grantTypeAuthorizationCode, grantTypeRefreshToken, grantTypeDeviceCode} // default if c.PasswordConnector != "" { supportedGrant = append(supportedGrant, grantTypePassword) }