aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2012-03-26 04:53:49 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-26 04:53:49 -0700
commit2ac1fad645200510e465d8ae768a6aea95bd32c5 (patch)
tree47266be67f942a9d1ce68739965d41229a9ddc21 /java
parent7409717648682d8498f58c1535479453256abf23 (diff)
parent9b2f77f2b1accc00ac22171de1fcc1925bab76d6 (diff)
downloadlatinime-2ac1fad645200510e465d8ae768a6aea95bd32c5.tar.gz
latinime-2ac1fad645200510e465d8ae768a6aea95bd32c5.tar.xz
latinime-2ac1fad645200510e465d8ae768a6aea95bd32c5.zip
Merge "Add a flag file for the experimental mode"
Diffstat (limited to 'java')
-rw-r--r--java/src/com/android/inputmethod/latin/define/ProductionFlag.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/define/ProductionFlag.java b/java/src/com/android/inputmethod/latin/define/ProductionFlag.java
new file mode 100644
index 000000000..cfb1d09cc
--- /dev/null
+++ b/java/src/com/android/inputmethod/latin/define/ProductionFlag.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+
+package com.android.inputmethod.latin.define;
+
+public class ProductionFlag {
+ public static final boolean IS_EXPERIMENTAL = false;
+}