blob: dc1a5df7126e22071d8986a483e5a5d5a19be601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package cgeo.geocaching.loaders;
import cgeo.geocaching.DataStore;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.enumerations.CacheType;
import cgeo.geocaching.geopoint.Geopoint;
import cgeo.geocaching.settings.Settings;
import android.content.Context;
public class RemoveFromHistoryLoader extends AbstractSearchLoader {
private final String[] selected;
private final Geopoint coords;
public RemoveFromHistoryLoader(Context context, String[] selected, Geopoint coords) {
super(context);
this.selected = selected.clone();
this.coords = coords;
}
@Override
public SearchResult runSearch() {
DataStore.clearVisitDate(selected);
return DataStore.getHistoryOfCaches(true, coords != null ? Settings.getCacheType() : CacheType.ALL);
}
}
|