diff options
author | Roopa Sattiraju <sattiraju@google.com> | 2022-02-14 10:31:54 -0800 |
---|---|---|
committer | Roopa Sattiraju <sattiraju@google.com> | 2022-02-14 10:31:54 -0800 |
commit | 6f4368087b738491d9274e2be08e9807dcae57c6 (patch) | |
tree | 19d7bcba2919925b0994edb0b6ec487675325656 /service/java/com/android/server/bluetooth/BluetoothService.java | |
parent | b528b5f33abe305e6d9eed5060ea773001d146ca (diff) |
Changing server location to com.android.server.bluetooth
Bug: 217736913
Test: Compile and bringup
Change-Id: I3c1e07567949dd9e503a62b65feee4c7b5e10b2d
Diffstat (limited to 'service/java/com/android/server/bluetooth/BluetoothService.java')
-rw-r--r-- | service/java/com/android/server/bluetooth/BluetoothService.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/service/java/com/android/server/bluetooth/BluetoothService.java b/service/java/com/android/server/bluetooth/BluetoothService.java index f5e100b338..ff6938e5f6 100644 --- a/service/java/com/android/server/bluetooth/BluetoothService.java +++ b/service/java/com/android/server/bluetooth/BluetoothService.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package com.android.server; +package com.android.server.bluetooth; import android.annotation.NonNull; import android.annotation.Nullable; @@ -22,9 +22,10 @@ import android.bluetooth.BluetoothAdapter; import android.content.Context; import android.os.UserManager; +import com.android.server.SystemService; import com.android.server.SystemService.TargetUser; -class BluetoothService extends SystemService { +public class BluetoothService extends SystemService { private BluetoothManagerService mBluetoothManagerService; private boolean mInitialized = false; |