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

Commit a8915975 authored by William Escande's avatar William Escande Committed by Automerger Merge Worker
Browse files

Merge "Clean TAG substring and nit" into main am: 74fdeb9e

parents fc56a53c 74fdeb9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ public class A2dpService extends ProfileService {
            throw new IllegalStateException("start() called twice");
        }

        // Step 1: Get AdapterService, A2dpNativeInterface, DatabaseManager, AudioManager.
        // Step 1: Get AdapterService, DatabaseManager, AudioManager.
        // None of them can be null.
        mAdapterService =
                requireNonNull(
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ import java.util.UUID;

/** Provides Bluetooth AVRCP Controller native interface for the AVRCP Controller service */
public class AvrcpControllerNativeInterface {
    static final String TAG = AvrcpControllerNativeInterface.class.getSimpleName().substring(0, 23);
    static final String TAG = AvrcpControllerNativeInterface.class.getSimpleName();
    static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG);
    static final boolean VDBG = Log.isLoggable(TAG, Log.VERBOSE);

+2 −5
Original line number Diff line number Diff line
@@ -29,12 +29,9 @@ import com.android.internal.annotations.VisibleForTesting;
import java.util.ArrayList;
import java.util.Arrays;

/**
 * Hearing Access Profile Client Native Interface to/from JNI.
 */
/** Hearing Access Profile Client Native Interface to/from JNI. */
public class HapClientNativeInterface {
    private static final String TAG =
            HapClientNativeInterface.class.getSimpleName().substring(0, 23);
    private static final String TAG = HapClientNativeInterface.class.getSimpleName();
    private static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG);

    private final BluetoothAdapter mAdapter;