Frameworks/base: Make IDENTITY_MATRIX final

Bug: 19797138
Change-Id: I127f24b7060a0c4dab401ce8e3057d362c6d6b06
This commit is contained in:
Andreas Gampe
2015-03-15 18:55:33 -07:00
parent 30fcd2aa8a
commit 399fa8a60a

View File

@@ -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");
}