diff options
| author | Michael Keppler <michael.keppler@gmx.de> | 2014-04-19 09:51:21 +0200 |
|---|---|---|
| committer | Michael Keppler <michael.keppler@gmx.de> | 2014-04-19 09:51:21 +0200 |
| commit | 856133fddb826e616a994bae0c32169a5f2f781c (patch) | |
| tree | 4fdabc2b196df8592b57e79c5ea501969e780df9 /main/src/cgeo/geocaching/Geocache.java | |
| parent | 9fa96b63ab13377b6be3052f6ecbeadb170e9bdc (diff) | |
| download | cgeo-856133fddb826e616a994bae0c32169a5f2f781c.zip cgeo-856133fddb826e616a994bae0c32169a5f2f781c.tar.gz cgeo-856133fddb826e616a994bae0c32169a5f2f781c.tar.bz2 | |
remove unneeded suppresswarnings
Eclipse does not show a warning if the parameter is documented in the
JavaDoc. If your IDE shows warnings about these parameters now after the
change, consider upgrading.
Diffstat (limited to 'main/src/cgeo/geocaching/Geocache.java')
| -rw-r--r-- | main/src/cgeo/geocaching/Geocache.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/Geocache.java b/main/src/cgeo/geocaching/Geocache.java index a224e4e..fa25576 100644 --- a/main/src/cgeo/geocaching/Geocache.java +++ b/main/src/cgeo/geocaching/Geocache.java @@ -34,12 +34,14 @@ import cgeo.geocaching.utils.MatcherWrapper; import cgeo.geocaching.utils.UncertainProperty; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; + import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.Predicate; import org.apache.commons.lang3.BooleanUtils; import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.StringUtils; import org.eclipse.jdt.annotation.Nullable; + import rx.Scheduler; import rx.Scheduler.Inner; import rx.Subscription; @@ -177,7 +179,7 @@ public class Geocache implements ICache, IWaypoint { * * @param gpxParser */ - public Geocache(@SuppressWarnings("unused") GPXParser gpxParser) { + public Geocache(GPXParser gpxParser) { setReliableLatLon(true); setAttributes(Collections.<String> emptyList()); setWaypoints(Collections.<Waypoint> emptyList(), false); |
