Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Remove unused trait bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
0nkery committed Jun 5, 2023
1 parent 5a8bd68 commit d525593
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ impl<'a, C: GlobalContext> GlobalContext for AppMessageContext<'a, C> {
}
}

impl<'a, C: GlobalContext + Sync> MessageContext for AppMessageContext<'a, C> {
impl<'a, C: GlobalContext> MessageContext for AppMessageContext<'a, C> {
fn start_timestamp(&self) -> DateTime<Utc> {
self.start_timestamp
}
}

impl<'a, C: GlobalContext + Sync> Context for AppMessageContext<'a, C> {}
impl<'a, C: GlobalContext> Context for AppMessageContext<'a, C> {}

///////////////////////////////////////////////////////////////////////////////

Expand Down

0 comments on commit d525593

Please sign in to comment.