cli/command/system: fix "unused-receiver" linting

cli/command/system/dial_stdio.go:113:7: unused-receiver: method receiver 'x' is not referenced in method's body, consider removing or renaming it as _ (revive)
    func (x *nopCloseReader) CloseRead() error {
          ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-02-17 14:22:42 +01:00
parent e71380eb5b
commit 5ef673bb14

View File

@ -110,7 +110,7 @@ type nopCloseReader struct {
halfReadWriteCloser
}
func (x *nopCloseReader) CloseRead() error {
func (*nopCloseReader) CloseRead() error {
return nil
}