aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2014-11-23 17:53:46 +0100
committerSamuel Tardieu <sam@rfc1149.net>2014-11-23 17:54:18 +0100
commit6c478f349a88a7c46f8ff4941692cf2c5f0ecea3 (patch)
tree4277a053d5b916ff61025aac3fb728e90d0eb046 /main
parent8881174860428e16366affd30324d0d2d1546e57 (diff)
downloadcgeo-6c478f349a88a7c46f8ff4941692cf2c5f0ecea3.zip
cgeo-6c478f349a88a7c46f8ff4941692cf2c5f0ecea3.tar.gz
cgeo-6c478f349a88a7c46f8ff4941692cf2c5f0ecea3.tar.bz2
Fix Javadoc bogus references
Diffstat (limited to 'main')
-rw-r--r--main/src/cgeo/geocaching/DataStore.java14
-rw-r--r--main/src/cgeo/geocaching/SearchActivity.java2
-rw-r--r--main/src/cgeo/geocaching/StaticMapsProvider.java5
-rw-r--r--main/src/cgeo/geocaching/activity/ShowcaseViewBuilder.java2
-rw-r--r--main/src/cgeo/geocaching/export/GpxSerializer.java6
-rw-r--r--main/src/cgeo/geocaching/maps/CGeoMap.java4
-rw-r--r--main/src/cgeo/geocaching/settings/SettingsActivity.java2
7 files changed, 10 insertions, 25 deletions
diff --git a/main/src/cgeo/geocaching/DataStore.java b/main/src/cgeo/geocaching/DataStore.java
index f341b91..fae0d38 100644
--- a/main/src/cgeo/geocaching/DataStore.java
+++ b/main/src/cgeo/geocaching/DataStore.java
@@ -1320,7 +1320,7 @@ public class DataStore {
*
* @param values
* a ContentValues to save coordinates in
- * @param oneWaypoint
+ * @param coords
* coordinates to save, or null to save empty coordinates
*/
private static void putCoords(final ContentValues values, final Geopoint coords) {
@@ -2235,14 +2235,10 @@ public class DataStore {
/**
* Loads the geocodes of caches in a viewport from CacheCache and/or Database
*
- * @param stored
- * True - query only stored caches, False - query cached ones as well
- * @param centerLat
- * @param centerLon
- * @param spanLat
- * @param spanLon
- * @param cacheType
- * @return Set with geocodes
+ * @param stored {@code true} to query caches stored in the database, {@code false} to also use the CacheCache
+ * @param viewport the viewport defining the area to scan
+ * @param cacheType the cache type
+ * @return the matching caches
*/
private static SearchResult loadInViewport(final boolean stored, final Viewport viewport, final CacheType cacheType) {
final Set<String> geocodes = new HashSet<>();
diff --git a/main/src/cgeo/geocaching/SearchActivity.java b/main/src/cgeo/geocaching/SearchActivity.java
index 2789486..9de279d 100644
--- a/main/src/cgeo/geocaching/SearchActivity.java
+++ b/main/src/cgeo/geocaching/SearchActivity.java
@@ -126,7 +126,7 @@ public class SearchActivity extends AbstractActionBarActivity implements Coordin
/**
* Performs a search for query either as geocode, trackable code or keyword
*
- * @param query
+ * @param nonTrimmedQuery
* String to search for
* @param keywordSearch
* Set to true if keyword search should be performed if query isn't GC or TB
diff --git a/main/src/cgeo/geocaching/StaticMapsProvider.java b/main/src/cgeo/geocaching/StaticMapsProvider.java
index fc950c1..fd7b751 100644
--- a/main/src/cgeo/geocaching/StaticMapsProvider.java
+++ b/main/src/cgeo/geocaching/StaticMapsProvider.java
@@ -137,11 +137,6 @@ public final class StaticMapsProvider {
/**
* Deletes and download all Waypoints static maps.
- *
- * @param cache
- * The cache instance
- * @param edge
- * The boundings
*/
private static Observable<String> refreshAllWpStaticMaps(final Geocache cache, final int width, final int height) {
LocalStorage.deleteFilesWithPrefix(cache.getGeocode(), MAP_FILENAME_PREFIX + WAYPOINT_PREFIX);
diff --git a/main/src/cgeo/geocaching/activity/ShowcaseViewBuilder.java b/main/src/cgeo/geocaching/activity/ShowcaseViewBuilder.java
index 04f096d..14f9281 100644
--- a/main/src/cgeo/geocaching/activity/ShowcaseViewBuilder.java
+++ b/main/src/cgeo/geocaching/activity/ShowcaseViewBuilder.java
@@ -29,7 +29,7 @@ public class ShowcaseViewBuilder extends Builder {
/**
* Use the hash of the title for the single shot remembering
*
- * @param resId
+ * @param title
*/
private void setSingleshot(final CharSequence title) {
super.singleShot(title.hashCode());
diff --git a/main/src/cgeo/geocaching/export/GpxSerializer.java b/main/src/cgeo/geocaching/export/GpxSerializer.java
index 08c6ef5..fe53f37 100644
--- a/main/src/cgeo/geocaching/export/GpxSerializer.java
+++ b/main/src/cgeo/geocaching/export/GpxSerializer.java
@@ -220,12 +220,6 @@ public final class GpxSerializer {
/**
* Writes one waypoint entry for cache waypoint.
- *
- * @param cache
- * The
- * @param wp
- * @param prefix
- * @throws IOException
*/
private void writeCacheWaypoint(final Waypoint wp) throws IOException {
final Geopoint coords = wp.getCoords();
diff --git a/main/src/cgeo/geocaching/maps/CGeoMap.java b/main/src/cgeo/geocaching/maps/CGeoMap.java
index 7cb3183..292808d 100644
--- a/main/src/cgeo/geocaching/maps/CGeoMap.java
+++ b/main/src/cgeo/geocaching/maps/CGeoMap.java
@@ -1002,7 +1002,7 @@ public class CGeoMap extends AbstractMap implements ViewFactory {
}
/**
- * Starts the {@link LoadTimer}.
+ * Starts the load timer.
*/
private Subscription startTimer() {
@@ -1081,7 +1081,7 @@ public class CGeoMap extends AbstractMap implements ViewFactory {
/**
* Worker thread that loads caches and waypoints from the database and then spawns the {@link DownloadRunnable}.
- * started by {@link LoadTimer}
+ * started by the load timer.
*/
private static class LoadRunnable extends DoRunnable {
diff --git a/main/src/cgeo/geocaching/settings/SettingsActivity.java b/main/src/cgeo/geocaching/settings/SettingsActivity.java
index 187d124..6354278 100644
--- a/main/src/cgeo/geocaching/settings/SettingsActivity.java
+++ b/main/src/cgeo/geocaching/settings/SettingsActivity.java
@@ -277,7 +277,7 @@ public class SettingsActivity extends PreferenceActivity {
/**
* Fire up a directory chooser on click on the preference.
*
- * @see #onActivityResult() for processing of the selected directory
+ * The result can be processed using {@link android.app.Activity#onActivityResult}.
*
* @param dct
* type of directory to be selected