Skip to content

Commit

Permalink
Make clippy happy with import
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-folsom committed Jan 14, 2024
1 parent da5179a commit 789ac99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/services/service.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::ops::{Deref, DerefMut};
use std::ops::Deref;

/// A service that controls access to some state
///
Expand Down Expand Up @@ -63,7 +63,7 @@ impl<S: State> Deref for Service<S> {
}

#[cfg(test)]
impl<S: State> DerefMut for Service<S> {
impl<S: State> std::ops::DerefMut for Service<S> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.state
}
Expand Down

0 comments on commit 789ac99

Please sign in to comment.