summaryrefslogtreecommitdiffstats
path: root/tokio-io/src/io/read_until.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-io/src/io/read_until.rs')
-rw-r--r--tokio-io/src/io/read_until.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/tokio-io/src/io/read_until.rs b/tokio-io/src/io/read_until.rs
index d0be4c94..4d7165cc 100644
--- a/tokio-io/src/io/read_until.rs
+++ b/tokio-io/src/io/read_until.rs
@@ -1,10 +1,8 @@
+use crate::AsyncRead;
+use futures::{Future, Poll};
use std::io::{self, BufRead};
use std::mem;
-use futures::{Future, Poll};
-
-use AsyncRead;
-
/// A future which can be used to easily read the contents of a stream into a
/// vector until the delimiter is reached.
///