aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorMohammadinamul Sheik <inamul@google.com>2015-03-13 17:05:11 -0700
committerMohammadinamul Sheik <inamul@google.com>2015-03-13 17:05:11 -0700
commitf04e2ed83a9f97e1237d1bcf3664eb8e42205609 (patch)
treea96b9a9bd2d3a319881dc84fe5d2ff98acdd5060 /java/src
parent93d2ab38577fb3d7c919bc4fd19a769f5c93e654 (diff)
downloadlatinime-f04e2ed83a9f97e1237d1bcf3664eb8e42205609.tar.gz
latinime-f04e2ed83a9f97e1237d1bcf3664eb8e42205609.tar.xz
latinime-f04e2ed83a9f97e1237d1bcf3664eb8e42205609.zip
Make RichInputMethodSubtype non-final for easy mocking
Change-Id: I167bc56b5224eb389ec853aeb539d7fcf79b81e1
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java b/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java
index c7bd88933..9d7849ffc 100644
--- a/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java
+++ b/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java
@@ -36,7 +36,8 @@ import javax.annotation.Nullable;
*
* Right now, this returns the extra value of its primary subtype.
*/
-public final class RichInputMethodSubtype {
+// non final for easy mocking.
+public class RichInputMethodSubtype {
private static final String TAG = RichInputMethodSubtype.class.getSimpleName();
@Nonnull