From a99ecc9ea2a413d87c1b2eef5d267f9e43e5eba3 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 30 Nov 2020 10:28:01 -0800 Subject: [PATCH] libct/cg/utils: silence a linter warning > libcontainer/cgroups/utils.go:282:4: SA4006: this value of `paths` is never used (staticcheck) > paths = make(map[string]string) Signed-off-by: Kir Kolyshkin --- libcontainer/cgroups/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcontainer/cgroups/utils.go b/libcontainer/cgroups/utils.go index 5303f0fb3..840817e39 100644 --- a/libcontainer/cgroups/utils.go +++ b/libcontainer/cgroups/utils.go @@ -278,7 +278,7 @@ func RemovePaths(paths map[string]string) (err error) { } } if len(paths) == 0 { - //nolint:ineffassign // done to help garbage collecting: opencontainers/runc#2506 + //nolint:ineffassign,staticcheck // done to help garbage collecting: opencontainers/runc#2506 paths = make(map[string]string) return nil }