summaryrefslogtreecommitdiffstats
path: root/tokio-io/src/lines.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-io/src/lines.rs')
-rw-r--r--tokio-io/src/lines.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/tokio-io/src/lines.rs b/tokio-io/src/lines.rs
index 8e59ff8f..ebe1ed5e 100644
--- a/tokio-io/src/lines.rs
+++ b/tokio-io/src/lines.rs
@@ -1,10 +1,8 @@
+use crate::AsyncRead;
+use futures::{Poll, Stream};
use std::io::{self, BufRead};
use std::mem;
-use futures::{Poll, Stream};
-
-use AsyncRead;
-
/// Combinator created by the top-level `lines` method which is a stream over
/// the lines of text on an I/O object.
#[derive(Debug)]