Skip to content

Commit 3ba0429

Browse files
committed
Remove unnecessary 'as' statement
We can just use `self`, no idea why the `self as io` is there.
1 parent 0c3e266 commit 3ba0429

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/bip158.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
4848
use prelude::*;
4949

50-
use io::{self as io, Cursor};
50+
use io::{self, Cursor};
5151
use core::fmt::{self, Display, Formatter};
5252
use core::cmp::{self, Ordering};
5353

0 commit comments

Comments
 (0)