am 28e6aeca: Merge "Frameworks/base: Make IDENTITY_MATRIX final"

* commit '28e6aeca3aad075ef4fd7aab08cd1ad1ff9eb555':
  Frameworks/base: Make IDENTITY_MATRIX final
This commit is contained in:
Andreas Gampe
2015-03-17 21:43:01 +00:00
committed by Android Git Automerger

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