aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-07-17 18:18:26 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-17 18:18:26 +0000
commit3ff6fa72fb5c27fc4936420979806ff9fd6ff44e (patch)
tree0b63886a0a37d3b5cdc0b8d5391da97454f4662d /java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
parent34301f69a1e47fb6f7ee5498815dd30cad488921 (diff)
parent5a5ee95faead8a2ae749067716481e86faf5f113 (diff)
downloadlatinime-3ff6fa72fb5c27fc4936420979806ff9fd6ff44e.tar.gz
latinime-3ff6fa72fb5c27fc4936420979806ff9fd6ff44e.tar.xz
latinime-3ff6fa72fb5c27fc4936420979806ff9fd6ff44e.zip
am 5a5ee95f: Rename ProductionFlag to ProductionFlags
* commit '5a5ee95faead8a2ae749067716481e86faf5f113': Rename ProductionFlag to ProductionFlags
Diffstat (limited to 'java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java')
-rw-r--r--java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java b/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
index 81df17127..cbae6952c 100644
--- a/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
+++ b/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
@@ -17,7 +17,7 @@
package com.android.inputmethod.compat;
import android.inputmethodservice.InputMethodService;
-import com.android.inputmethod.latin.define.ProductionFlag;
+import com.android.inputmethod.latin.define.ProductionFlags;
import java.lang.reflect.Method;
@@ -37,7 +37,7 @@ public final class InputMethodServiceCompatUtils {
}
public static void setCursorAnchorMonitorMode(final InputMethodService ims, final int mode) {
- if (ProductionFlag.USES_CURSOR_ANCHOR_MONITOR) {
+ if (ProductionFlags.USES_CURSOR_ANCHOR_MONITOR) {
ExperimentalAPIUtils.setCursorAnchorMonitorMode(ims, mode);
}
}