Merge "Remove unused code"
diff --git a/src/com/android/bluetooth/hid/HidHostService.java b/src/com/android/bluetooth/hid/HidHostService.java
index 561b37c..d0800a3 100644
--- a/src/com/android/bluetooth/hid/HidHostService.java
+++ b/src/com/android/bluetooth/hid/HidHostService.java
@@ -73,7 +73,6 @@
     private static final int MESSAGE_GET_REPORT = 8;
     private static final int MESSAGE_ON_GET_REPORT = 9;
     private static final int MESSAGE_SET_REPORT = 10;
-    private static final int MESSAGE_SEND_DATA = 11;
     private static final int MESSAGE_ON_VIRTUAL_UNPLUG = 12;
     private static final int MESSAGE_ON_HANDSHAKE = 13;
     private static final int MESSAGE_GET_IDLE_TIME = 14;
@@ -272,15 +271,6 @@
                     }
                 }
                 break;
-                case MESSAGE_SEND_DATA: {
-                    BluetoothDevice device = (BluetoothDevice) msg.obj;
-                    Bundle data = msg.getData();
-                    String report = data.getString(BluetoothHidHost.EXTRA_REPORT);
-                    if (!sendDataNative(Utils.getByteAddress(device), report)) {
-                        Log.e(TAG, "Error: send data native returns false");
-                    }
-                }
-                break;
                 case MESSAGE_ON_VIRTUAL_UNPLUG: {
                     BluetoothDevice device = getDevice((byte[]) msg.obj);
                     int status = msg.arg1;