aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-03-19 19:32:48 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-19 19:32:48 -0700
commit75742f839df39b50fada6773ebd83f8e4e20c0a3 (patch)
tree2b1481cc25d0b840a49d4dde91ae2fbc8a57f9a2 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
parentc19c2c0210f871e3ea772ced0bca7c18653667cc (diff)
parent14e908c3486ae5996e66625e959ff45c5f3740ef (diff)
downloadlatinime-75742f839df39b50fada6773ebd83f8e4e20c0a3.tar.gz
latinime-75742f839df39b50fada6773ebd83f8e4e20c0a3.tar.xz
latinime-75742f839df39b50fada6773ebd83f8e4e20c0a3.zip
am 14e908c3: Remove unused argument in SuggestionStripLayoutHelper
* commit '14e908c3486ae5996e66625e959ff45c5f3740ef': Remove unused argument in SuggestionStripLayoutHelper
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
index 43cb11b14..3cdd07361 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
@@ -232,8 +232,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
if (!ImportantNoticeUtils.shouldShowImportantNotice(getContext(), inputAttributes)) {
return false;
}
- final int width = getWidth();
- if (width <= 0) {
+ if (getWidth() <= 0) {
return false;
}
final String importantNoticeTitle = ImportantNoticeUtils.getNextImportantNoticeTitle(
@@ -241,7 +240,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
if (TextUtils.isEmpty(importantNoticeTitle)) {
return false;
}
- mLayoutHelper.layoutImportantNotice(mImportantNoticeStrip, width, importantNoticeTitle);
+ mLayoutHelper.layoutImportantNotice(mImportantNoticeStrip, importantNoticeTitle);
mStripVisibilityGroup.showImportantNoticeStrip();
mImportantNoticeStrip.setOnClickListener(this);
return true;