summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-03-17 21:33:08 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-17 21:33:09 +0000
commit28e6aeca3aad075ef4fd7aab08cd1ad1ff9eb555 (patch)
treeed93f3433e0b41509bfcce1ceab1d35e07fbce1c
parent9568772acbf5b36f2edb41f7c5b06d499329add0 (diff)
parent399fa8a60af5362f2bd93636d6a5e7e1fb574131 (diff)
downloadframeworks_base-28e6aeca3aad075ef4fd7aab08cd1ad1ff9eb555.zip
frameworks_base-28e6aeca3aad075ef4fd7aab08cd1ad1ff9eb555.tar.gz
frameworks_base-28e6aeca3aad075ef4fd7aab08cd1ad1ff9eb555.tar.bz2
Merge "Frameworks/base: Make IDENTITY_MATRIX final"
-rw-r--r--graphics/java/android/graphics/Matrix.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/java/android/graphics/Matrix.java b/graphics/java/android/graphics/Matrix.java
index b4e6bab..90e5a4e 100644
--- a/graphics/java/android/graphics/Matrix.java
+++ b/graphics/java/android/graphics/Matrix.java
@@ -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");
}