Merge "[SB Refactor] Remove the colons from the new pipeline dumpables." into tm-qpr-dev am: 3199b9fa2d

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

Change-Id: I3ea101519fc44869257aeb138b93b7c99f68e22c
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Caitlin Shkuratov
2022-10-28 19:48:37 +00:00
committed by Automerger Merge Worker
3 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ class ConnectivityConstants
@Inject @Inject
constructor(dumpManager: DumpManager, telephonyManager: TelephonyManager) : Dumpable { constructor(dumpManager: DumpManager, telephonyManager: TelephonyManager) : Dumpable {
init { init {
dumpManager.registerDumpable("$SB_LOGGING_TAG:ConnectivityConstants", this) dumpManager.registerDumpable("${SB_LOGGING_TAG}Constants", this)
} }
/** True if this device has the capability for data connections and false otherwise. */ /** True if this device has the capability for data connections and false otherwise. */

View File

@@ -62,7 +62,7 @@ class ConnectivityRepositoryImpl @Inject constructor(
tunerService: TunerService, tunerService: TunerService,
) : ConnectivityRepository, Dumpable { ) : ConnectivityRepository, Dumpable {
init { init {
dumpManager.registerDumpable("$SB_LOGGING_TAG:ConnectivityRepository", this) dumpManager.registerDumpable("${SB_LOGGING_TAG}Repository", this)
} }
// The default set of hidden icons to use if we don't get any from [TunerService]. // The default set of hidden icons to use if we don't get any from [TunerService].

View File

@@ -35,7 +35,7 @@ class WifiConstants @Inject constructor(
dumpManager: DumpManager, dumpManager: DumpManager,
) : Dumpable { ) : Dumpable {
init { init {
dumpManager.registerDumpable("$SB_LOGGING_TAG:WifiConstants", this) dumpManager.registerDumpable("${SB_LOGGING_TAG}WifiConstants", this)
} }
/** True if we should show the activityIn/activityOut icons and false otherwise. */ /** True if we should show the activityIn/activityOut icons and false otherwise. */