From e6fff8003f4409d3ab67d39715600f73a16b5b4d Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Thu, 26 Apr 2018 09:15:01 +0200 Subject: [PATCH] remove deprecated and unused import --- core/src/spotify_id.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/spotify_id.rs b/core/src/spotify_id.rs index 86804b85..c71ea1d7 100644 --- a/core/src/spotify_id.rs +++ b/core/src/spotify_id.rs @@ -2,9 +2,6 @@ use byteorder::{BigEndian, ByteOrder}; use extprim::u128::u128; use std; use std::fmt; -// Unneeded since 1.21 -#[allow(unused_imports)] -use std::ascii::AsciiExt; #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)] pub struct SpotifyId(u128);