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

Commit a1553754 authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by Automerger Merge Worker
Browse files

Merge "Make BluetoothGattCallback.onServiceChanged public" am: fbe538a1 am: 48ae6eed

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1439193

Change-Id: Id069612174a151f39e154b63f4af116f9722dd7c
parents 84b1f761 48ae6eed
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

package android.bluetooth;

import android.annotation.NonNull;

/**
 * This abstract class is used to implement {@link BluetoothGatt} callbacks.
 */
@@ -203,8 +205,7 @@ public abstract class BluetoothGattCallback {
     * called to re-discover the services.
     *
     * @param gatt GATT client involved
     * @hide
     */
    public void onServiceChanged(BluetoothGatt gatt) {
    public void onServiceChanged(@NonNull BluetoothGatt gatt) {
    }
}