aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-08-03 09:35:16 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-03 09:35:16 -0700
commit7c2ec76ed872de2de13773ff6f05c896bc23ee90 (patch)
tree78fd8930a11f18782d34200d8a4f5988f0731e88 /java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
parentf4e139a7b5426b9bddaee10f611815855a3582da (diff)
parent900910c02bc10f902a27681311b8a93279c34ec2 (diff)
downloadlatinime-7c2ec76ed872de2de13773ff6f05c896bc23ee90.tar.gz
latinime-7c2ec76ed872de2de13773ff6f05c896bc23ee90.tar.xz
latinime-7c2ec76ed872de2de13773ff6f05c896bc23ee90.zip
am 900910c0: am 54e84a00: Make a makedict command for dicttool (A3)
* commit '900910c02bc10f902a27681311b8a93279c34ec2': Make a makedict command for dicttool (A3)
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java')
-rw-r--r--java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java b/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
index 8b53c9427..5864db28e 100644
--- a/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
+++ b/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
@@ -61,8 +61,8 @@ public class FusionDictionary implements Iterable<Word> {
* This represents an "attribute", that is either a bigram or a shortcut.
*/
public static class WeightedString {
- final String mWord;
- int mFrequency;
+ public final String mWord;
+ public int mFrequency;
public WeightedString(String word, int frequency) {
mWord = word;
mFrequency = frequency;