Chore: make linter happy

This commit is contained in:
Dreamacro
2022-05-17 19:58:33 +08:00
parent b384449717
commit 8603ac40a1
2 changed files with 1 additions and 2 deletions

View File

@ -52,8 +52,8 @@ func (alloc *Allocator) Put(buf []byte) error {
return errors.New("allocator Put() incorrect buffer size")
}
//lint:ignore SA6002 ignore temporarily
//nolint
//lint:ignore SA6002 ignore temporarily
alloc.buffers[bits].Put(buf)
return nil
}