Bug 1459403: Trivial cleanup. r=hiro

MozReview-Commit-ID: K7zVYGiYAn6
This commit is contained in:
Emilio Cobos Álvarez 2018-05-26 23:35:52 +02:00
Родитель 3b41726ac4
Коммит d4bc975ab9
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -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,
})
}
}