From 4898f34d95442a31a24391221c899606f6fec5b6 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Mon, 21 Sep 2015 18:53:04 -0400 Subject: [PATCH] Remove unnecessary `allow(dead_code)` function attributes --- components/style/values.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/style/values.rs b/components/style/values.rs index 6907a736988..e58def1d66d 100644 --- a/components/style/values.rs +++ b/components/style/values.rs @@ -279,7 +279,6 @@ pub mod specified { _ => Err(()) } } - #[allow(dead_code)] pub fn parse(input: &mut Parser) -> Result { Length::parse_internal(input, &AllowedNumericType::All) } @@ -692,7 +691,6 @@ pub mod specified { _ => Err(()) } } - #[allow(dead_code)] #[inline] pub fn parse(input: &mut Parser) -> Result { LengthOrPercentage::parse_internal(input, &AllowedNumericType::All) @@ -784,7 +782,6 @@ pub mod specified { _ => Err(()) } } - #[allow(dead_code)] #[inline] pub fn parse(input: &mut Parser) -> Result { LengthOrPercentageOrNone::parse_internal(input, &AllowedNumericType::All) @@ -823,7 +820,6 @@ pub mod specified { _ => Err(()) } } - #[allow(dead_code)] #[inline] pub fn parse(input: &mut Parser) -> Result { LengthOrNone::parse_internal(input, &AllowedNumericType::All)