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.CancelWrite
This commit is contained in:
parent
ca939df44e
commit
3372fa794c
7 changed files with 24 additions and 32 deletions
|
@ -48,10 +48,8 @@ func (mr *MockStreamIMockRecorder) CancelRead(arg0 interface{}) *gomock.Call {
|
|||
}
|
||||
|
||||
// CancelWrite mocks base method
|
||||
func (m *MockStreamI) CancelWrite(arg0 protocol.ApplicationErrorCode) error {
|
||||
ret := m.ctrl.Call(m, "CancelWrite", arg0)
|
||||
ret0, _ := ret[0].(error)
|
||||
return ret0
|
||||
func (m *MockStreamI) CancelWrite(arg0 protocol.ApplicationErrorCode) {
|
||||
m.ctrl.Call(m, "CancelWrite", arg0)
|
||||
}
|
||||
|
||||
// CancelWrite indicates an expected call of CancelWrite
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue