From 832bfff25b5be952a84821dfb38977d01065be4d Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Thu, 19 Apr 2018 22:05:47 -0700 Subject: [PATCH] Remove unused import of std::ascii::AsciiExt 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 --- src/event.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/event.rs b/src/event.rs index f79cb4c1..6e383a1c 100644 --- a/src/event.rs +++ b/src/event.rs @@ -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.