refactoring: make unused linter stricker #1388

Merged
dstepanov-yadro merged 15 commits from dstepanov-yadro/frostfs-node:refactoring/drop_unused into master 2024-09-25 08:55:39 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 62c8e6554c - Show all commits

View file

@ -7,6 +7,8 @@ import (
)
type RawEntry struct {
// key and value used for record dump.
// nolint:unused
key, value []byte
a-savchuk marked this conversation as resolved
Review

fixed

fixed
}

View file

@ -16,6 +16,8 @@ type (
DefaultRecord struct {
addr oid.Address
// data used for record dump.
// nolint:unused
data []byte
a-savchuk marked this conversation as resolved
Review

fixed

fixed
}
)