Skip to content

Commit

Permalink
Remove unused import of std::ascii::AsciiExt
Browse files Browse the repository at this point in the history
The import of std::ascii::AsciiExt in src/event.rs is unused. Remove it.

> warning: unused import: `std::ascii::AsciiExt`
>  --> src/event.rs:4:5
>   |
> 4 | use std::ascii::AsciiExt;
>   |     ^^^^^^^^^^^^^^^^^^^^
>   |
>   = note: #[warn(unused_imports)] on by default
  • Loading branch information
d-e-s-o committed Apr 20, 2018
1 parent b3e0bbd commit 832bfff
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/event.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! Mouse and key events.
use std::io::{Error, ErrorKind};
use std::ascii::AsciiExt;
use std::str;

/// An event reported by the terminal.
Expand Down

0 comments on commit 832bfff

Please sign in to comment.