diff options
author | 2014-06-27 07:33:09 +0000 | |
---|---|---|
committer | 2014-06-26 23:19:11 +0000 | |
commit | c9c3ea0b68a1bad1febb7532fa941b430a1b941a (patch) | |
tree | aab941f5768afa1cd44dbfaf613eefce16a3be49 /java/src/com/android/inputmethod/accessibility/MoreSuggestionsAccessibilityDelegate.java | |
parent | 8f70552a21f5e2387d3fbc0f7f569c2a2a8464d6 (diff) | |
parent | adba09b54ed1b30bf9b24d632165229a0752b144 (diff) | |
download | latinime-c9c3ea0b68a1bad1febb7532fa941b430a1b941a.tar.gz latinime-c9c3ea0b68a1bad1febb7532fa941b430a1b941a.tar.xz latinime-c9c3ea0b68a1bad1febb7532fa941b430a1b941a.zip |
Merge "Remove redundant override methods and extended classes"
Diffstat (limited to 'java/src/com/android/inputmethod/accessibility/MoreSuggestionsAccessibilityDelegate.java')
-rw-r--r-- | java/src/com/android/inputmethod/accessibility/MoreSuggestionsAccessibilityDelegate.java | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/java/src/com/android/inputmethod/accessibility/MoreSuggestionsAccessibilityDelegate.java b/java/src/com/android/inputmethod/accessibility/MoreSuggestionsAccessibilityDelegate.java deleted file mode 100644 index 941bac14c..000000000 --- a/java/src/com/android/inputmethod/accessibility/MoreSuggestionsAccessibilityDelegate.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (C) 2014 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.android.inputmethod.accessibility; - -import android.view.MotionEvent; - -import com.android.inputmethod.keyboard.KeyDetector; -import com.android.inputmethod.keyboard.MoreKeysKeyboardView; - -public final class MoreSuggestionsAccessibilityDelegate - extends MoreKeysKeyboardAccessibilityDelegate { - public MoreSuggestionsAccessibilityDelegate(final MoreKeysKeyboardView moreKeysKeyboardView, - final KeyDetector keyDetector) { - super(moreKeysKeyboardView, keyDetector); - } - - // TODO: Remove redundant override method. - @Override - protected void simulateTouchEvent(final int touchAction, final MotionEvent hoverEvent) { - final MotionEvent touchEvent = MotionEvent.obtain(hoverEvent); - touchEvent.setAction(touchAction); - mKeyboardView.onTouchEvent(touchEvent); - touchEvent.recycle(); - } -} |