mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove the error return value from Stream.CancelRead
This commit is contained in:
parent
3808191679
commit
ca939df44e
7 changed files with 22 additions and 27 deletions
|
@ -37,10 +37,8 @@ func (m *MockReceiveStreamI) EXPECT() *MockReceiveStreamIMockRecorder {
|
|||
}
|
||||
|
||||
// CancelRead mocks base method
|
||||
func (m *MockReceiveStreamI) CancelRead(arg0 protocol.ApplicationErrorCode) error {
|
||||
ret := m.ctrl.Call(m, "CancelRead", arg0)
|
||||
ret0, _ := ret[0].(error)
|
||||
return ret0
|
||||
func (m *MockReceiveStreamI) CancelRead(arg0 protocol.ApplicationErrorCode) {
|
||||
m.ctrl.Call(m, "CancelRead", arg0)
|
||||
}
|
||||
|
||||
// CancelRead indicates an expected call of CancelRead
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue