Merge "Remove unnecessary indexes for Location services" into udc-dev am: d1d2374b89

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/22221742

Change-Id: Icd95ed324f3fe31197c0961fa5031b12ee5318d7
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Yanting Yang
2023-03-24 08:09:11 +00:00
committed by Automerger Merge Worker

View File

@@ -21,13 +21,13 @@ import android.content.Context;
import com.android.settings.R;
import com.android.settings.dashboard.DashboardFragment;
import com.android.settings.search.BaseSearchIndexProvider;
import com.android.settingslib.search.SearchIndexable;
/**
* A page that configures the Location Services settings for work profile.
*
* Note that this page should not provide indexes because it is only used in the two tabs
* {@link ProfileSelectFragment} scenario and should not be launched independently.
*/
@SearchIndexable(forTarget = SearchIndexable.ALL & ~SearchIndexable.ARC)
public class LocationServicesForWork extends DashboardFragment {
private static final String TAG = "LocationServicesForWork";
@@ -51,10 +51,4 @@ public class LocationServicesForWork extends DashboardFragment {
super.onAttach(context);
use(LocationInjectedServicesForWorkPreferenceController.class).init(this);
}
/**
* For Search.
*/
public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
new BaseSearchIndexProvider(R.xml.location_services_workprofile);
}