From 9c8b2c0b4ef5ac0744eeefe5f9e741d1cc450fc3 Mon Sep 17 00:00:00 2001 From: Youngsoo Son Date: Wed, 21 Aug 2013 17:27:01 +0900 Subject: [PATCH] Remove unused variables --- netsurfcss.rc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/netsurfcss.rc b/netsurfcss.rc index 8930615..e80dfef 100644 --- a/netsurfcss.rc +++ b/netsurfcss.rc @@ -1144,7 +1144,6 @@ pub mod computed { } pub fn border_top_style(&self) -> CssBorderStyleValue { - let mut length = 0; let type_ = unsafe { css_computed_border_top_style(self.computed_style) }; let type_ = type_ as css_border_style_e; @@ -1152,7 +1151,6 @@ pub mod computed { } pub fn border_right_style(&self) -> CssBorderStyleValue { - let mut length = 0; let type_ = unsafe { css_computed_border_right_style(self.computed_style) }; let type_ = type_ as css_border_style_e; @@ -1160,7 +1158,6 @@ pub mod computed { } pub fn border_bottom_style(&self) -> CssBorderStyleValue { - let mut length = 0; let type_ = unsafe { css_computed_border_bottom_style(self.computed_style) }; let type_ = type_ as css_border_style_e; @@ -1168,7 +1165,6 @@ pub mod computed { } pub fn border_left_style(&self) -> CssBorderStyleValue { - let mut length = 0; let type_ = unsafe { css_computed_border_left_style(self.computed_style) }; let type_ = type_ as css_border_style_e;