Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8ae059c authored by Hansong Zhang's avatar Hansong Zhang Committed by Automerger Merge Worker
Browse files

Merge "Remove unused code" am: 8016c64c am: e00056f4 am: 03cf6de2

Original change: https://android-review.googlesource.com/c/platform/packages/apps/Bluetooth/+/1563259

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ic52890009600a3d4a1b2de32b17b9d1508e38683
parents 4ccde7ea 03cf6de2
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -73,7 +73,6 @@ public class HidHostService extends ProfileService {
    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 @@ public class HidHostService extends ProfileService {
                    }
                }
                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;