From 99d4e7b65c0ec47bd99015c40939c9db0969d3de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 26 May 2018 23:35:52 +0200 Subject: [PATCH] style: Trivial cleanup. Bug: 1459403 Reviewed-by: hiro MozReview-Commit-ID: K7zVYGiYAn6 --- .../style/properties/helpers/animated_properties.mako.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/style/properties/helpers/animated_properties.mako.rs b/components/style/properties/helpers/animated_properties.mako.rs index 3bdd1264a0b..42c531bac83 100644 --- a/components/style/properties/helpers/animated_properties.mako.rs +++ b/components/style/properties/helpers/animated_properties.mako.rs @@ -1503,10 +1503,10 @@ impl Animate for MatrixDecomposed2D { let matrix = self.matrix.animate(&other.matrix, procedure)?; Ok(MatrixDecomposed2D { - translate: translate, - scale: scale, - angle: angle, - matrix: matrix, + translate, + scale, + angle, + matrix, }) } }