Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28e6aeca authored by Andreas Gampe's avatar Andreas Gampe Committed by Gerrit Code Review
Browse files

Merge "Frameworks/base: Make IDENTITY_MATRIX final"

parents 9568772a 399fa8a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ public class Matrix {
    public static final int MPERSP_2 = 8;   //!< use with getValues/setValues

    /** @hide */
    public static Matrix IDENTITY_MATRIX = new Matrix() {
    public final static Matrix IDENTITY_MATRIX = new Matrix() {
        void oops() {
            throw new IllegalStateException("Matrix can not be modified");
        }