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

Commit f36b9b5d authored by Jakub Pawlowski's avatar Jakub Pawlowski
Browse files

Make BluetoothGattCallback.onServiceChanged public

Bug: 154056389
Test: proper CTS test will be provided
Change-Id: I2c9264910b65d62124c75c3ee3fd0b5bd18a2006
parent d173ec43
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) {
    }
}