summaryrefslogtreecommitdiff
path: root/services/java/com/android/server/SystemServer.java
diff options
context:
space:
mode:
authorHui Wu <huiwu@google.com>2022-09-21 21:16:04 -0700
committerHui Wu <huiwu@google.com>2022-09-22 15:08:56 -0700
commit1a25dca0bcd65bbfd28fe65dde3cdedbd7e8e427 (patch)
tree641b9c6d30aa9bf7d4e988c0f8a2ba28e0f3a0bc /services/java/com/android/server/SystemServer.java
parent4658046b52c19e726b2cab579c3b44b803c1946b (diff)
Remove impl of cloudsearch api
Bug: 246376638 Test: Manually Tested Change-Id: I1740d5e1a0fb25a0fedea0a92e8a901684e35635
Diffstat (limited to 'services/java/com/android/server/SystemServer.java')
-rw-r--r--services/java/com/android/server/SystemServer.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index 8fd4b5aa6bee..87bf4b8d9403 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -378,8 +378,6 @@ public final class SystemServer implements Dumpable {
"com.android.server.searchui.SearchUiManagerService";
private static final String SMARTSPACE_MANAGER_SERVICE_CLASS =
"com.android.server.smartspace.SmartspaceManagerService";
- private static final String CLOUDSEARCH_MANAGER_SERVICE_CLASS =
- "com.android.server.cloudsearch.CloudSearchManagerService";
private static final String DEVICE_IDLE_CONTROLLER_CLASS =
"com.android.server.DeviceIdleController";
private static final String BLOB_STORE_MANAGER_SERVICE_CLASS =
@@ -1886,12 +1884,6 @@ public final class SystemServer implements Dumpable {
mSystemServiceManager.startService(SMARTSPACE_MANAGER_SERVICE_CLASS);
t.traceEnd();
- // CloudSearch manager service
- // TODO: add deviceHasConfigString(context, R.string.config_defaultCloudSearchServices)
- t.traceBegin("StartCloudSearchService");
- mSystemServiceManager.startService(CLOUDSEARCH_MANAGER_SERVICE_CLASS);
- t.traceEnd();
-
t.traceBegin("InitConnectivityModuleConnector");
try {
ConnectivityModuleConnector.getInstance().init(context);