mirror of
https://github.com/nextcloud/android.git
synced 2024-12-18 06:51:55 +03:00
Removed option to refine suggestions in edit field
This commit is contained in:
parent
dea69d5fd7
commit
043d2128ad
1 changed files with 0 additions and 2 deletions
|
@ -54,7 +54,6 @@ public class UsersAndGroupsSearchProvider extends ContentProvider {
|
||||||
private static final String[] COLUMNS = {
|
private static final String[] COLUMNS = {
|
||||||
BaseColumns._ID,
|
BaseColumns._ID,
|
||||||
SearchManager.SUGGEST_COLUMN_TEXT_1,
|
SearchManager.SUGGEST_COLUMN_TEXT_1,
|
||||||
SearchManager.SUGGEST_COLUMN_FLAGS,
|
|
||||||
SearchManager.SUGGEST_COLUMN_INTENT_DATA
|
SearchManager.SUGGEST_COLUMN_INTENT_DATA
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -159,7 +158,6 @@ public class UsersAndGroupsSearchProvider extends ContentProvider {
|
||||||
response.newRow()
|
response.newRow()
|
||||||
.add(count++) // BaseColumns._ID
|
.add(count++) // BaseColumns._ID
|
||||||
.add(displayName) // SearchManager.SUGGEST_COLUMN_TEXT_1
|
.add(displayName) // SearchManager.SUGGEST_COLUMN_TEXT_1
|
||||||
.add(SearchManager.FLAG_QUERY_REFINEMENT)
|
|
||||||
.add(dataUri);
|
.add(dataUri);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue