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

Commit 4485ecd6 authored by Andre Eisenbach's avatar Andre Eisenbach Committed by android-build-merger
Browse files

Fix log spam in getCharacteristicById() am: 1591d368

am: 6fbbf9f7

* commit '6fbbf9f7':
  Fix log spam in getCharacteristicById()

Change-Id: I74a4554a83a98c8941b2073547fd7aad7b27089a
parents 3b4f8fde 6fbbf9f7
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;
            }