[SB Refactor] Remove the colons from the new pipeline dumpables.

Bug: 255250616
Test: Verify dumps of SbConnectivityConstants,
SbConnectivityWifiConstants, and SbConnectivityRepository work

Change-Id: Ie275ce0a636e2e5eea07393e05799d5f61d80dee
This commit is contained in:
Caitlin Shkuratov
2022-10-25 17:52:03 +00:00
parent 46b33d3f81
commit 68bbbe9208
3 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ class ConnectivityConstants
@Inject
constructor(dumpManager: DumpManager, telephonyManager: TelephonyManager) : Dumpable {
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. */

View File

@@ -62,7 +62,7 @@ class ConnectivityRepositoryImpl @Inject constructor(
tunerService: TunerService,
) : ConnectivityRepository, Dumpable {
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].

View File

@@ -35,7 +35,7 @@ class WifiConstants @Inject constructor(
dumpManager: DumpManager,
) : Dumpable {
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. */