summaryrefslogtreecommitdiff
path: root/services/java/com/android/server/SystemServer.java
diff options
context:
space:
mode:
authorRoopa Sattiraju <sattiraju@google.com>2022-02-14 10:28:52 -0800
committerRoopa Sattiraju <sattiraju@google.com>2022-02-14 10:28:52 -0800
commitebd556314a38b9deb605c0222c00ed3b5df5867c (patch)
tree91b3ae14200e25c162d417728a996086adc281c4 /services/java/com/android/server/SystemServer.java
parentcdd2a77e6b84b03c16d824b37db34a9216c2c851 (diff)
Changing server location to com.android.server.bluetooth
Bug: 217736913 Test: Compile and bringup Change-Id: I570a8cf84246cc8e7c6cc2c0a0bfef49d9e69c9d
Diffstat (limited to 'services/java/com/android/server/SystemServer.java')
-rw-r--r--services/java/com/android/server/SystemServer.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index 5c3721d482c6..2e801ab60acd 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -417,6 +417,8 @@ public final class SystemServer implements Dumpable {
private static final String UWB_SERVICE_CLASS = "com.android.server.uwb.UwbService";
private static final String SAFETY_CENTER_SERVICE_CLASS =
"com.android.safetycenter.SafetyCenterService";
+ private static final String BLUETOOTH_SERVICE_CLASS =
+ "com.android.server.bluetooth.BluetoothService";
private static final String SUPPLEMENTALPROCESS_SERVICE_CLASS =
"com.android.server.supplementalprocess.SupplementalProcessManagerService$Lifecycle";
@@ -1624,7 +1626,7 @@ public final class SystemServer implements Dumpable {
Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
} else {
t.traceBegin("StartBluetoothService");
- mSystemServiceManager.startService(BluetoothService.class);
+ mSystemServiceManager.startService(BLUETOOTH_SERVICE_CLASS);
t.traceEnd();
}