refactoring: make unused linter stricker #1388
2 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type RawEntry struct {
|
type RawEntry struct {
|
||||||
|
// key and value used for record dump.
|
||||||
|
// nolint:unused
|
||||||
key, value []byte
|
key, value []byte
|
||||||
a-savchuk marked this conversation as resolved
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,8 @@ type (
|
||||||
|
|
||||||
DefaultRecord struct {
|
DefaultRecord struct {
|
||||||
addr oid.Address
|
addr oid.Address
|
||||||
|
// data used for record dump.
|
||||||
|
// nolint:unused
|
||||||
data []byte
|
data []byte
|
||||||
a-savchuk marked this conversation as resolved
dstepanov-yadro
commented
fixed fixed
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue
fixed