ソースを参照

core: Remove an unneeded use warning

Thomas Bächler 7 年 前
コミット
a1a3a2e772
1 ファイル変更2 行追加0 行削除
  1. 2 0
      core/src/util/spotify_id.rs

+ 2 - 0
core/src/util/spotify_id.rs

@@ -2,6 +2,8 @@ use std;
 use std::fmt;
 use util::u128;
 use byteorder::{BigEndian, ByteOrder};
+// Unneeded since 1.21
+#[allow(unused_imports)]
 use std::ascii::AsciiExt;
 
 #[derive(Debug,Copy,Clone,PartialEq,Eq,Hash)]