From 381a2a6f2831cbd2e56c82cd47bd90c15bc73f36 Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Sat, 31 Oct 2009 18:34:20 -0400 Subject: [PATCH] remove unused code. --- src/com/android/launcher2/HandleView.java | 26 ----------------------- 1 file changed, 26 deletions(-) diff --git a/src/com/android/launcher2/HandleView.java b/src/com/android/launcher2/HandleView.java index e6d940d1f2..2bffe4b52a 100644 --- a/src/com/android/launcher2/HandleView.java +++ b/src/com/android/launcher2/HandleView.java @@ -59,32 +59,6 @@ public class HandleView extends ImageView { return newFocus; } - @Override - public boolean onKeyDown(int keyCode, KeyEvent event) { - final boolean handled = super.onKeyDown(keyCode, event); - - /* TODO - if (!handled && !mLauncher.isDrawerDown() && !isDirectionKey(keyCode)) { - return mLauncher.getApplicationsGrid().onKeyDown(keyCode, event); - } - */ - - return handled; - } - - @Override - public boolean onKeyUp(int keyCode, KeyEvent event) { - final boolean handled = super.onKeyUp(keyCode, event); - - /* TODO - if (!handled && !mLauncher.isDrawerDown() && !isDirectionKey(keyCode)) { - return mLauncher.getApplicationsGrid().onKeyUp(keyCode, event); - } - */ - - return handled; - } - @Override public boolean onTouchEvent(MotionEvent ev) { if (ev.getAction() == MotionEvent.ACTION_DOWN && mLauncher.isAllAppsVisible()) {