Remove redundant returns; linting

This commit is contained in:
Kegan Dougal 2020-09-15 19:24:04 +01:00
parent dae9e626a5
commit c1c1814ce8
2 changed files with 0 additions and 2 deletions

View file

@ -26,7 +26,6 @@ func (t *RoomserverInternalAPITrace) InputRoomEvents(
) { ) {
t.Impl.InputRoomEvents(ctx, req, res) t.Impl.InputRoomEvents(ctx, req, res)
util.GetLogger(ctx).Infof("InputRoomEvents req=%+v res=%+v", js(req), js(res)) util.GetLogger(ctx).Infof("InputRoomEvents req=%+v res=%+v", js(req), js(res))
return
} }
func (t *RoomserverInternalAPITrace) PerformInvite( func (t *RoomserverInternalAPITrace) PerformInvite(

View file

@ -162,5 +162,4 @@ func (r *Inputer) InputRoomEvents(
return return
} }
} }
return
} }