Skip to content
Snippets Groups Projects
Commit f71aee8f authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Tighten up the "define" classes.

Change-Id: I854b1dd56b676d0a492a15c16bfe4c6a1bcccdf7
parent b10e06fe
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,10 @@
package com.android.inputmethod.latin.define;
public class JniLibName {
public final class JniLibName {
private JniLibName() {
// This class is not publicly instantiable.
}
public static final String JNI_LIB_NAME = "jni_latinime";
}
......@@ -16,6 +16,10 @@
package com.android.inputmethod.latin.define;
public class ProductionFlag {
public final class ProductionFlag {
private ProductionFlag() {
// This class is not publicly instantiable.
}
public static final boolean IS_EXPERIMENTAL = false;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment