mirror of
https://github.com/androidx/media.git
synced 2025-05-04 22:20:47 +08:00
Effect: Remove unnecessary "this" qualifier
`transformationMatrix` is not ambiguous, as there's no other local transformationMatrix variable nearby. PiperOrigin-RevId: 482184602
This commit is contained in:
parent
28c4be2f6b
commit
c698ec51a2
@ -97,9 +97,9 @@ public final class ScaleToFitTransformation implements MatrixTransformation {
|
|||||||
* @param rotationDegrees How much to rotate the frame counterclockwise, in degrees.
|
* @param rotationDegrees How much to rotate the frame counterclockwise, in degrees.
|
||||||
*/
|
*/
|
||||||
private ScaleToFitTransformation(float scaleX, float scaleY, float rotationDegrees) {
|
private ScaleToFitTransformation(float scaleX, float scaleY, float rotationDegrees) {
|
||||||
this.transformationMatrix = new Matrix();
|
transformationMatrix = new Matrix();
|
||||||
this.transformationMatrix.postScale(scaleX, scaleY);
|
transformationMatrix.postScale(scaleX, scaleY);
|
||||||
this.transformationMatrix.postRotate(rotationDegrees);
|
transformationMatrix.postRotate(rotationDegrees);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user