Removed unnecessary trait bounds

This commit is contained in:
LasterAlex 2024-10-20 04:48:29 +03:00
parent f8be5ccd8c
commit 2f08590685
No known key found for this signature in database

View file

@ -436,8 +436,8 @@ where
update_listener_error_handler: Arc<Eh>, update_listener_error_handler: Arc<Eh>,
mut stop_token: Option<StopToken>, mut stop_token: Option<StopToken>,
) where ) where
UListener: UpdateListener + Send + 'a, UListener: UpdateListener + 'a,
Eh: ErrorHandler<UListener::Err> + Send + Sync + 'a, Eh: ErrorHandler<UListener::Err> + 'a,
UListener::Err: Debug, UListener::Err: Debug,
{ {
self.state.start_dispatching(); self.state.start_dispatching();