aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-09-27 03:28:57 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-09-27 03:28:57 -0700
commit337274a01558b40135ecb1de0b4fe2b67c607958 (patch)
tree946755db07ee5808be32ae16424dee6dac4abdad /java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java
parentb2c1cd08661dc400c00d2545e24e22397f06281b (diff)
parente7bdd9910141c11701751be32bfed67956a950b6 (diff)
downloadlatinime-337274a01558b40135ecb1de0b4fe2b67c607958.tar.gz
latinime-337274a01558b40135ecb1de0b4fe2b67c607958.tar.xz
latinime-337274a01558b40135ecb1de0b4fe2b67c607958.zip
am e7bdd991: am a28a05e9: Cleanup: Make some classes as final
* commit 'e7bdd9910141c11701751be32bfed67956a950b6': Cleanup: Make some classes as final
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java')
-rw-r--r--java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java b/java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java
index 5b41d27f2..5bb24da74 100644
--- a/java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java
+++ b/java/src/com/android/inputmethod/latin/makedict/PendingAttribute.java
@@ -22,7 +22,7 @@ package com.android.inputmethod.latin.makedict;
* An attribute is either a bigram or a shortcut.
* All instances of this class are always immutable.
*/
-public class PendingAttribute {
+public final class PendingAttribute {
public final int mFrequency;
public final int mAddress;
public PendingAttribute(final int frequency, final int address) {