diff options
| author | Lucas Silva <lusilva@google.com> | 2022-01-10 20:07:10 +0000 |
|---|---|---|
| committer | Lucas Silva <lusilva@google.com> | 2022-01-18 17:04:02 +0000 |
| commit | b292ef1910884f73ea719334ebb2cad45809194e (patch) | |
| tree | 8bf75c388aade4d304511b27066c20a2263b6c19 /services/java/com/android/server | |
| parent | ab4a170645becbc643d2f37815f38444bd5c3d50 (diff) | |
Clean up CommunalManagerService
This system service is no longer needed, as there is no longer a shared
lockscreen.
Test: locally on device
Bug: 206054365
Ignore-AOSP-First: cleanup
Change-Id: Ib2db06c377cf632da77dc41c629debfe658bfc48
Diffstat (limited to 'services/java/com/android/server')
| -rw-r--r-- | services/java/com/android/server/SystemServer.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index c767f4d72e47..4b21454bdc00 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -115,7 +115,6 @@ import com.android.server.biometrics.sensors.iris.IrisService; import com.android.server.broadcastradio.BroadcastRadioService; import com.android.server.camera.CameraServiceProxy; import com.android.server.clipboard.ClipboardService; -import com.android.server.communal.CommunalManagerService; import com.android.server.compat.PlatformCompat; import com.android.server.compat.PlatformCompatNative; import com.android.server.connectivity.PacProxyService; @@ -2747,12 +2746,6 @@ public final class SystemServer implements Dumpable { mSystemServiceManager.startService(APP_COMPAT_OVERRIDES_SERVICE_CLASS); t.traceEnd(); - if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_COMMUNAL_MODE)) { - t.traceBegin("CommunalManagerService"); - mSystemServiceManager.startService(CommunalManagerService.class); - t.traceEnd(); - } - // These are needed to propagate to the runnable below. final NetworkManagementService networkManagementF = networkManagement; final NetworkStatsService networkStatsF = networkStats; |
