Remove unnecessary 'as' statement

We can just use `self`, no idea why the `self as io` is there.
This commit is contained in:
Tobin C. Harding 2022-04-21 12:45:42 +10:00
parent 21e1b9dbbd
commit 80e0fb7673
1 changed files with 1 additions and 1 deletions

View File

@ -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};