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

Commit c30e8555 authored by Caitlin Shkuratov's avatar Caitlin Shkuratov
Browse files

[SB] Don't dump *all* Bluetooth devices in BluetoothController.

Fixes: 407465248
Flag: EXEMPT bugfix
Test: dump BluetoothController -> verify not all devices are included
Change-Id: Ia08611f0c9737b83a20f9ba20293766422a51d4e
parent 5425193b
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -137,10 +137,6 @@ public class BluetoothControllerImpl implements BluetoothController, BluetoothCa
        pw.print("  mIsActive="); pw.println(mIsActive);
        pw.print("  mConnectedDevices="); pw.println(getConnectedDevices());
        pw.print("  mCallbacks.size="); pw.println(mHandler.mCallbacks.size());
        pw.println("  Bluetooth Devices:");
        for (CachedBluetoothDevice device : getDevices()) {
            pw.println("    " + getDeviceString(device));
        }
    }

    private static String connectionStateToString(@ConnectionState int state) {