diff options
| author | triakcz <kunc88@gmail.com> | 2012-12-17 22:03:54 +0100 |
|---|---|---|
| committer | triakcz <kunc88@gmail.com> | 2012-12-18 00:06:26 +0100 |
| commit | b2951e465ca783c4eab32e642ed885625b417f12 (patch) | |
| tree | 5eba9850b91a6455c1629d2a277c2f504638e9ce /main/src/cgeo/geocaching/ui | |
| parent | 5ad007ed7938a9b284278b34a77ec21a0061fd86 (diff) | |
| download | cgeo-b2951e465ca783c4eab32e642ed885625b417f12.zip cgeo-b2951e465ca783c4eab32e642ed885625b417f12.tar.gz cgeo-b2951e465ca783c4eab32e642ed885625b417f12.tar.bz2 | |
Uploading of modified coords to geocaching.com
Diffstat (limited to 'main/src/cgeo/geocaching/ui')
| -rw-r--r-- | main/src/cgeo/geocaching/ui/Formatter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/ui/Formatter.java b/main/src/cgeo/geocaching/ui/Formatter.java index 53a7276..e006d57 100644 --- a/main/src/cgeo/geocaching/ui/Formatter.java +++ b/main/src/cgeo/geocaching/ui/Formatter.java @@ -153,7 +153,7 @@ public abstract class Formatter { public static String formatWaypointInfo(cgWaypoint waypoint) { final List<String> infos = new ArrayList<String>(3); - if (WaypointType.ALL_TYPES_EXCEPT_OWN.contains(waypoint.getWaypointType())) { + if (WaypointType.ALL_TYPES_EXCEPT_OWN_AND_ORIGINAL.contains(waypoint.getWaypointType())) { infos.add(waypoint.getWaypointType().getL10n()); } if (cgWaypoint.PREFIX_OWN.equalsIgnoreCase(waypoint.getPrefix())) { |
