diff options
author | 2013-03-18 18:21:18 +0900 | |
---|---|---|
committer | 2013-03-18 23:15:47 +0900 | |
commit | 9c3860ce461c3791891bf667edc77fe798c8d332 (patch) | |
tree | 007577ae110acf0c2e477b19c6228520ccc82689 /java/src/com/android/inputmethod/research/Statistics.java | |
parent | 5cb0560b000f37b3fb3937f01b6d3e928afef57a (diff) | |
download | latinime-9c3860ce461c3791891bf667edc77fe798c8d332.tar.gz latinime-9c3860ce461c3791891bf667edc77fe798c8d332.tar.xz latinime-9c3860ce461c3791891bf667edc77fe798c8d332.zip |
Rename ProductionFlag.IS_EXPERIMENTAL to USES_DEVELOPMENT_ONLY_DIAGNOSTICS
bug: 8393568
Change-Id: Ie5edf44a3627aca9416145aff56bf05bbf2a05f3
Diffstat (limited to 'java/src/com/android/inputmethod/research/Statistics.java')
-rw-r--r-- | java/src/com/android/inputmethod/research/Statistics.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/research/Statistics.java b/java/src/com/android/inputmethod/research/Statistics.java index 50e2b7fbc..7f6c851bb 100644 --- a/java/src/com/android/inputmethod/research/Statistics.java +++ b/java/src/com/android/inputmethod/research/Statistics.java @@ -23,7 +23,8 @@ import com.android.inputmethod.latin.define.ProductionFlag; public class Statistics { private static final String TAG = Statistics.class.getSimpleName(); - private static final boolean DEBUG = false && ProductionFlag.IS_EXPERIMENTAL_DEBUG; + private static final boolean DEBUG = false + && ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS_DEBUG; // TODO: Cleanup comments to only including those giving meaningful information. // Number of characters entered during a typing session |