Merge "Frameworks/base: Make IDENTITY_MATRIX final"

This commit is contained in:
Andreas Gampe
2015-03-17 21:33:08 +00:00
committed by Gerrit Code Review

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