summaryrefslogtreecommitdiff
path: root/java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2012-04-19 20:31:30 -0700
committerKurt Partridge <kep@google.com>2012-04-19 20:32:37 -0700
commitc59d74ce476cc9edcb30f739bd8d37feacf218c4 (patch)
tree1cb0d21f6d9e7331ba84fe32802846dc4b055679 /java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java
parent48a7681e064ae259b840f0e757da2d716043d893 (diff)
remove unnecessary KeyboardState logging
Bug: 6188932 Change-Id: Iafbb1825777122a1810fa3339853263aced3077e
Diffstat (limited to 'java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java')
-rw-r--r--java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java b/java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java
index 392afca97..5712df1fc 100644
--- a/java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java
+++ b/java/src/com/android/inputmethod/keyboard/internal/AlphabetShiftState.java
@@ -18,9 +18,6 @@ package com.android.inputmethod.keyboard.internal;
import android.util.Log;
-import com.android.inputmethod.latin.ResearchLogger;
-import com.android.inputmethod.latin.define.ProductionFlag;
-
public class AlphabetShiftState {
private static final String TAG = AlphabetShiftState.class.getSimpleName();
private static final boolean DEBUG = false;
@@ -62,9 +59,6 @@ public class AlphabetShiftState {
}
if (DEBUG)
Log.d(TAG, "setShifted(" + newShiftState + "): " + toString(oldState) + " > " + this);
- if (ProductionFlag.IS_EXPERIMENTAL) {
- ResearchLogger.alphabetShiftState_setShifted(newShiftState, oldState, this);
- }
}
public void setShiftLocked(boolean newShiftLockState) {
@@ -84,9 +78,6 @@ public class AlphabetShiftState {
if (DEBUG)
Log.d(TAG, "setShiftLocked(" + newShiftLockState + "): " + toString(oldState)
+ " > " + this);
- if (ProductionFlag.IS_EXPERIMENTAL) {
- ResearchLogger.alphabetShiftState_setShiftLocked(newShiftLockState, oldState, this);
- }
}
public void setAutomaticShifted() {
@@ -94,9 +85,6 @@ public class AlphabetShiftState {
mState = AUTOMATIC_SHIFTED;
if (DEBUG)
Log.d(TAG, "setAutomaticShifted: " + toString(oldState) + " > " + this);
- if (ProductionFlag.IS_EXPERIMENTAL) {
- ResearchLogger.alphabetShiftState_setAutomaticShifted(oldState, this);
- }
}
public boolean isShiftedOrShiftLocked() {