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

Commit 6fbbf9f7 authored by Andre Eisenbach's avatar Andre Eisenbach Committed by android-build-merger
Browse files

Fix log spam in getCharacteristicById()

am: 1591d368

* commit '1591d368':
  Fix log spam in getCharacteristicById()

Change-Id: I7ce3de2609c7c6bca09ad6866e6d904aeb416535
parents 6a9803f9 1591d368
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;
            }