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 c698ec51a24bdf42e2affad181d2a6d812cbe47b)
This commit is contained in:
huangdarwin 2022-10-19 13:08:03 +00:00 committed by microkatz
parent 6f94b8efe5
commit 5c0175e4e3

View File

@ -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