mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Effect: Remove unnecessary "this" qualifier
`transformationMatrix` is not ambiguous, as there's no other local
transformationMatrix variable nearby.
PiperOrigin-RevId: 482184602
(cherry picked from commit c698ec51a2)
This commit is contained in:
parent
6f94b8efe5
commit
5c0175e4e3
1 changed files with 3 additions and 3 deletions
|
|
@ -97,9 +97,9 @@ public final class ScaleToFitTransformation implements MatrixTransformation {
|
|||
* @param rotationDegrees How much to rotate the frame counterclockwise, in degrees.
|
||||
*/
|
||||
private ScaleToFitTransformation(float scaleX, float scaleY, float rotationDegrees) {
|
||||
this.transformationMatrix = new Matrix();
|
||||
this.transformationMatrix.postScale(scaleX, scaleY);
|
||||
this.transformationMatrix.postRotate(rotationDegrees);
|
||||
transformationMatrix = new Matrix();
|
||||
transformationMatrix.postScale(scaleX, scaleY);
|
||||
transformationMatrix.postRotate(rotationDegrees);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in a new issue