diff options
author | 2014-01-09 15:54:47 +0900 | |
---|---|---|
committer | 2014-01-09 15:54:47 +0900 | |
commit | 6c326caa4f37eb29774aeb82a39c56df62c7f568 (patch) | |
tree | d506ef10eaf34f9be43ca284a6d9875855292459 /java/src | |
parent | b30f7e4bceefc4f30c7b942675cc6af5f6d8d852 (diff) | |
download | latinime-6c326caa4f37eb29774aeb82a39c56df62c7f568.tar.gz latinime-6c326caa4f37eb29774aeb82a39c56df62c7f568.tar.xz latinime-6c326caa4f37eb29774aeb82a39c56df62c7f568.zip |
A style fix
Just a style fix to follow up the previous commit.
BUG: 11439600
Change-Id: Ib7a4654627a6fc22d86f2097f86f001bd76426e9
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/EmojiPalettesView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/EmojiPalettesView.java b/java/src/com/android/inputmethod/keyboard/EmojiPalettesView.java index 31749614d..8dea908e8 100644 --- a/java/src/com/android/inputmethod/keyboard/EmojiPalettesView.java +++ b/java/src/com/android/inputmethod/keyboard/EmojiPalettesView.java @@ -552,7 +552,7 @@ public final class EmojiPalettesView extends LinearLayout implements OnTabChange return false; } final int code = (Integer) tag; - switch(event.getAction()) { + switch (event.getAction()) { case MotionEvent.ACTION_DOWN: mKeyboardActionListener.onPressKey( code, 0 /* repeatCount */, true /* isSinglePointer */); |