From 832d7194c9131cc0ab688b68dc5978c5e4763d71 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Wed, 28 Feb 2024 11:25:33 +0400 Subject: [PATCH] cli: Drop empty case in switch statement Signed-off-by: Leonard Lyubich --- cmd/neofs-cli/modules/util/acl.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/neofs-cli/modules/util/acl.go b/cmd/neofs-cli/modules/util/acl.go index bea8d2693af..32286f9b894 100644 --- a/cmd/neofs-cli/modules/util/acl.go +++ b/cmd/neofs-cli/modules/util/acl.go @@ -140,7 +140,6 @@ func eaclFiltersToString(fs []eacl.Filter) string { _, _ = tw.Write([]byte("\t==\t")) case eacl.MatchStringNotEqual: _, _ = tw.Write([]byte("\t!=\t")) - case eacl.MatchUnknown: } _, _ = tw.Write([]byte(f.Value() + "\t"))