aboutsummaryrefslogtreecommitdiffstats
path: root/testing/firefox/servo-allow-unused-imports.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/firefox/servo-allow-unused-imports.patch')
-rw-r--r--testing/firefox/servo-allow-unused-imports.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/firefox/servo-allow-unused-imports.patch b/testing/firefox/servo-allow-unused-imports.patch
deleted file mode 100644
index 3c7f2e026a..0000000000
--- a/testing/firefox/servo-allow-unused-imports.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/servo/components/style/values/specified/font.rs b/servo/components/style/values/specified/font.rs
-index da2fa94..3ceab11 100644
---- a/servo/components/style/values/specified/font.rs
-+++ b/servo/components/style/values/specified/font.rs
-@@ -11,7 +11,7 @@ use cssparser::{Parser, Token};
- use parser::{Parse, ParserContext};
- use properties::longhands::system_font::SystemFont;
- #[allow(unused_imports)]
--use std::ascii::AsciiExt;
-+#[allow(unused_imports)] use std::ascii::AsciiExt;
- use std::fmt;
- use style_traits::{ToCss, StyleParseErrorKind, ParseError};
- use values::CustomIdent;