aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgeoapplication.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/cgeoapplication.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/cgeoapplication.java')
-rw-r--r--main/src/cgeo/geocaching/cgeoapplication.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/cgeoapplication.java b/main/src/cgeo/geocaching/cgeoapplication.java
index 92c0005..b43cf05 100644
--- a/main/src/cgeo/geocaching/cgeoapplication.java
+++ b/main/src/cgeo/geocaching/cgeoapplication.java
@@ -308,14 +308,14 @@ public class cgeoapplication extends Application {
return new SearchResult(geocodes, getAllHistoricCachesCount());
}
- /** {@link cgData#loadCachedInViewport(Long, Long, Long, Long, CacheType)} */
- public SearchResult getCachedInViewport(final Long centerLat, final Long centerLon, final Long spanLat, final Long spanLon, final CacheType cacheType) {
+ /** {@link cgData#loadCachedInViewport(long, long, long, long, CacheType)} */
+ public SearchResult getCachedInViewport(final long centerLat, final long centerLon, final long spanLat, final long spanLon, final CacheType cacheType) {
final Set<String> geocodes = storage.loadCachedInViewport(centerLat, centerLon, spanLat, spanLon, cacheType);
return new SearchResult(geocodes);
}
- /** {@link cgData#loadStoredInViewport(Long, Long, Long, Long, CacheType)} */
- public SearchResult getStoredInViewport(final Long centerLat, final Long centerLon, final Long spanLat, final Long spanLon, final CacheType cacheType) {
+ /** {@link cgData#loadStoredInViewport(long, long, long, long, CacheType)} */
+ public SearchResult getStoredInViewport(final long centerLat, final long centerLon, final long spanLat, final long spanLon, final CacheType cacheType) {
final Set<String> geocodes = storage.loadStoredInViewport(centerLat, centerLon, spanLat, spanLon, cacheType);
return new SearchResult(geocodes);
}