Remove unnecessary 'as' statement
We can just use `self`, no idea why the `self as io` is there.
This commit is contained in:
parent
21e1b9dbbd
commit
80e0fb7673
|
@ -47,7 +47,7 @@
|
|||
|
||||
use prelude::*;
|
||||
|
||||
use io::{self as io, Cursor};
|
||||
use io::{self, Cursor};
|
||||
use core::fmt::{self, Display, Formatter};
|
||||
use core::cmp::{self, Ordering};
|
||||
|
||||
|
|
Loading…
Reference in New Issue