diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 12:50:16 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 13:29:42 -0400 |
commit | c3ef358c01956bfa44a7427a2548943c3f045138 (patch) | |
tree | 25ea571fb39bccaa9cd0817f30114875e7382cee /cli/global_timer.rs | |
parent | 0cb64cef767170827806974e59075dc56c2eafe5 (diff) |
Remove unnecessary extern statements
Diffstat (limited to 'cli/global_timer.rs')
-rw-r--r-- | cli/global_timer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/global_timer.rs b/cli/global_timer.rs index d2d294de9..1870ebd54 100644 --- a/cli/global_timer.rs +++ b/cli/global_timer.rs @@ -8,9 +8,9 @@ //! only need to be able to start and cancel a single timer (or Delay, as Tokio //! calls it) for an entire Isolate. This is what is implemented here. -use crate::futures::TryFutureExt; use futures::channel::oneshot; use futures::future::FutureExt; +use futures::TryFutureExt; use std::future::Future; use std::time::Instant; |