cleanup: fix static checks

fix SA1019 static check to replace
io/utils with os package and sets
with generic sets

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna 2023-02-01 18:10:01 +01:00 committed by mergify[bot]
parent 9c8de9471e
commit 3967e4dae9

View File

@ -33,14 +33,14 @@ const (
// VolumeLocks implements a map with atomic operations. It stores a set of all volume IDs // VolumeLocks implements a map with atomic operations. It stores a set of all volume IDs
// with an ongoing operation. // with an ongoing operation.
type VolumeLocks struct { type VolumeLocks struct {
locks sets.String locks sets.Set[string]
mux sync.Mutex mux sync.Mutex
} }
// NewVolumeLocks returns new VolumeLocks. // NewVolumeLocks returns new VolumeLocks.
func NewVolumeLocks() *VolumeLocks { func NewVolumeLocks() *VolumeLocks {
return &VolumeLocks{ return &VolumeLocks{
locks: sets.NewString(), locks: sets.New[string](),
} }
} }