aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/SearchResult.java
diff options
context:
space:
mode:
authorPortree-Kid <keith.paterson@gmx.de>2012-04-12 18:37:54 +0200
committerPortree-Kid <keith.paterson@gmx.de>2012-04-12 18:37:54 +0200
commit5b5fb8ea1d949067bead8d6bbfd8a836a635d9fa (patch)
tree0c344ac532476fd7dff6805a518c94ccedbcb86f /main/src/cgeo/geocaching/SearchResult.java
parent2a11bc0780b7b77c8871478e201ff11a8cff38cd (diff)
parent925f3f6177d81de33cb231ac2afb91138df04cbb (diff)
downloadcgeo-5b5fb8ea1d949067bead8d6bbfd8a836a635d9fa.zip
cgeo-5b5fb8ea1d949067bead8d6bbfd8a836a635d9fa.tar.gz
cgeo-5b5fb8ea1d949067bead8d6bbfd8a836a635d9fa.tar.bz2
Merge remote-tracking branch 'upstream/master' into master-new
Conflicts: main/src/cgeo/geocaching/cgData.java
Diffstat (limited to 'main/src/cgeo/geocaching/SearchResult.java')
-rw-r--r--main/src/cgeo/geocaching/SearchResult.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/main/src/cgeo/geocaching/SearchResult.java b/main/src/cgeo/geocaching/SearchResult.java
index e7c9a88..f7458fe 100644
--- a/main/src/cgeo/geocaching/SearchResult.java
+++ b/main/src/cgeo/geocaching/SearchResult.java
@@ -7,7 +7,6 @@ import cgeo.geocaching.enumerations.LoadFlags.SaveFlag;
import cgeo.geocaching.enumerations.StatusCode;
import cgeo.geocaching.gcvote.GCVote;
-import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import android.os.Parcel;
@@ -201,14 +200,4 @@ public class SearchResult implements Parcelable {
return cgeoapplication.getInstance().saveCache(cache, EnumSet.of(SaveFlag.SAVE_CACHE));
}
- /** Add the cache geocodes to the search and store them in the CacheCache */
- public void addCaches(final Set<cgCache> caches) {
- if (CollectionUtils.isEmpty(caches)) {
- return;
- }
-
- for (final cgCache cache : caches) {
- addCache(cache);
- }
- }
}