mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +01:00
Changed LHS to Set
This commit is contained in:
parent
8d8002fcf7
commit
66aca81b59
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ public class CategorizationFragment extends SherlockFragment{
|
||||||
|
|
||||||
protected ArrayList<String> recentCatQuery() {
|
protected ArrayList<String> recentCatQuery() {
|
||||||
ArrayList<String> items = new ArrayList<String>();
|
ArrayList<String> items = new ArrayList<String>();
|
||||||
LinkedHashSet<String> mergedItems = new LinkedHashSet<String>();
|
Set<String> mergedItems = new LinkedHashSet<String>();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Cursor cursor = client.query(
|
Cursor cursor = client.query(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue