diff options
author | 2011-07-07 22:51:12 -0700 | |
---|---|---|
committer | 2011-07-07 22:51:12 -0700 | |
commit | 1c9817f0e66f2bf77706f07ba48075ed4be3a970 (patch) | |
tree | 2b19de66394b4184907b808060fb1e462cbc1e0b /java/src | |
parent | 48f989dee5b7ea9c5836209d743953ba1878f383 (diff) | |
download | latinime-1c9817f0e66f2bf77706f07ba48075ed4be3a970.tar.gz latinime-1c9817f0e66f2bf77706f07ba48075ed4be3a970.tar.xz latinime-1c9817f0e66f2bf77706f07ba48075ed4be3a970.zip |
Remove stale TODO comments
Change-Id: I800e25ca1ecfb11580decd1de147b3f3ae5defb0
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/KeyboardView.java | 1 | ||||
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/LatinKeyboardBaseView.java | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardView.java b/java/src/com/android/inputmethod/keyboard/KeyboardView.java index 95b9d7751..e31aa8478 100644 --- a/java/src/com/android/inputmethod/keyboard/KeyboardView.java +++ b/java/src/com/android/inputmethod/keyboard/KeyboardView.java @@ -331,7 +331,6 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy { mPreviewText = null; mShowKeyPreviewPopup = false; } - // TODO: Use Theme (android.R.styleable.Theme_backgroundDimAmount) mBackgroundDimAmount = a.getFloat(R.styleable.KeyboardView_backgroundDimAmount, 0.5f); a.recycle(); diff --git a/java/src/com/android/inputmethod/keyboard/LatinKeyboardBaseView.java b/java/src/com/android/inputmethod/keyboard/LatinKeyboardBaseView.java index 4f58bbe67..35ce0a3f0 100644 --- a/java/src/com/android/inputmethod/keyboard/LatinKeyboardBaseView.java +++ b/java/src/com/android/inputmethod/keyboard/LatinKeyboardBaseView.java @@ -183,13 +183,10 @@ public class LatinKeyboardBaseView extends KeyboardView { attrs, R.styleable.KeyboardView, defStyle, R.style.KeyboardView); mVerticalCorrection = a.getDimensionPixelOffset( R.styleable.KeyboardView_verticalCorrection, 0); - mPopupLayout = a.getResourceId(R.styleable.KeyboardView_popupLayout, 0); - // TODO: Use Theme (android.R.styleable.Theme_backgroundDimAmount) a.recycle(); final Resources res = getResources(); - final float keyHysteresisDistance = res.getDimension(R.dimen.key_hysteresis_distance); mKeyDetector = new KeyDetector(keyHysteresisDistance); mSwipeThreshold = (int) (500 * res.getDisplayMetrics().density); |