diff options
Diffstat (limited to 'java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java | 4 |
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); } } |