servo: Merge #6630 - Remove unused mut (from mt2d2:remove_unused_mut); r=metajack

rustc complains about unneeded mut; remove this instance.

Source-Repo: https://github.com/servo/servo
Source-Revision: da5f1abaa7dad8f0f6530b0578d006fab118ee35
This commit is contained in:
Michael Tremel 2015-07-14 17:37:43 -06:00
Родитель f7a684b3a0
Коммит 575264771d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -783,7 +783,7 @@ impl<'a> PaintContext<'a> {
_ => panic!("invalid border style")
};
let mut lighter_color;
let lighter_color;
let mut darker_color = color::black();
if color != darker_color {
darker_color = self.scale_color(color, if is_groove { 1.0/3.0 } else { 2.0/3.0 });