Sonar fix

This commit is contained in:
Zoltán Papp 2024-07-09 16:51:40 +02:00
parent 6553d8ce03
commit 1f95467b02

View File

@ -74,15 +74,15 @@ func (c *Conn) RemoteAddr() net.Addr {
}
func (c *Conn) SetReadDeadline(t time.Time) error {
return fmt.Errorf("not implemented")
return fmt.Errorf("SetReadDeadline is not implemented")
}
func (c *Conn) SetWriteDeadline(t time.Time) error {
return fmt.Errorf("not implemented")
return fmt.Errorf("SetWriteDeadline is not implemented")
}
func (c *Conn) SetDeadline(t time.Time) error {
return fmt.Errorf("not implemented")
return fmt.Errorf("SetDeadline is not implemented")
}
func (c *Conn) Close() error {