lib/contextutil: make golanci-lint happy by substituing unused function arg name with _

This is a follow-up for 4b1611267f
This commit is contained in:
Aliaksandr Valialkin 2024-09-26 17:06:37 +02:00
parent 4b1611267f
commit 3646724c6f
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -42,6 +42,6 @@ func (ctx *stopChanContext) Err() error {
}
}
func (ctx *stopChanContext) Value(key any) any {
func (ctx *stopChanContext) Value(_ any) any {
return nil
}