Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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(
......
......@@ -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);
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment