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

Commit 1591d368 authored by Andre Eisenbach's avatar Andre Eisenbach
Browse files

Fix log spam in getCharacteristicById()

Bug: 27744135
Change-Id: I43f6358484729dedd85eb52432ad9805a66ff81e
parent aac5bf1c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -545,7 +545,6 @@ public final class BluetoothGatt implements BluetoothProfile {
    /*package*/ BluetoothGattCharacteristic getCharacteristicById(BluetoothDevice device, int instanceId) {
        for(BluetoothGattService svc : mServices) {
            for(BluetoothGattCharacteristic charac : svc.getCharacteristics()) {
                Log.w(TAG, "getCharacteristicById() comparing " + charac.getInstanceId() + " and " + instanceId);
                if (charac.getInstanceId() == instanceId)
                    return charac;
            }