Tighten up the "define" classes.
Change-Id: I854b1dd56b676d0a492a15c16bfe4c6a1bcccdf7
This commit is contained in:
parent
b10e06feea
commit
f71aee8f4f
2 changed files with 10 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue