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

Commit 74fdeb9e authored by William Escande's avatar William Escande Committed by Gerrit Code Review
Browse files

Merge "Clean TAG substring and nit" into main

parents 49a00ea1 8f0ad495
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;