diff options
| author | 2020-03-05 21:09:00 +0000 | |
|---|---|---|
| committer | 2020-03-05 21:09:00 +0000 | |
| commit | 8caff7dc8143688d5dfa2503182d2b7a0a0cae62 (patch) | |
| tree | 8b39ec072bbbef1ccdd6799a9fb419047c35176b /services/java | |
| parent | b1acbedfb05a6b08bbde9fb7a8f9277807edd145 (diff) | |
| parent | 0b291791c80091e3abb12874d72ef7a1740389d6 (diff) | |
Merge "DO NOT MERGE: Remove AppSearch from Android R." into rvc-dev
Diffstat (limited to 'services/java')
| -rw-r--r-- | services/java/com/android/server/SystemServer.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index 107b0a1c2da8..b019e9dd03ba 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -294,8 +294,6 @@ public final class SystemServer { "com.android.server.DeviceIdleController"; private static final String BLOB_STORE_MANAGER_SERVICE_CLASS = "com.android.server.blob.BlobStoreManagerService"; - private static final String APP_SEARCH_MANAGER_SERVICE_CLASS = - "com.android.server.appsearch.AppSearchManagerService"; private static final String TETHERING_CONNECTOR_CLASS = "android.net.ITetheringConnector"; @@ -2178,10 +2176,6 @@ public final class SystemServer { mSystemServiceManager.startBootPhase(t, SystemService.PHASE_DEVICE_SPECIFIC_SERVICES_READY); t.traceEnd(); - t.traceBegin("AppSearchManagerService"); - mSystemServiceManager.startService(APP_SEARCH_MANAGER_SERVICE_CLASS); - t.traceEnd(); - ConcurrentUtils.waitForFutureNoInterrupt(mBlobStoreServiceStart, START_BLOB_STORE_SERVICE); |