aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2014-11-23 01:01:30 +0100
committerSamuel Tardieu <sam@rfc1149.net>2014-11-23 01:01:30 +0100
commit9e8c8d5845301567152d64b513b00bf826e6626e (patch)
treea7c09c53e4ce30d2823b14769c65ece143785dcc /main/src
parentd05c69b4a777df67df411058da12405c589897e1 (diff)
downloadcgeo-9e8c8d5845301567152d64b513b00bf826e6626e.zip
cgeo-9e8c8d5845301567152d64b513b00bf826e6626e.tar.gz
cgeo-9e8c8d5845301567152d64b513b00bf826e6626e.tar.bz2
Replace known value by constant
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/Geocache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/Geocache.java b/main/src/cgeo/geocaching/Geocache.java
index 7ec0831..54ddf5e 100644
--- a/main/src/cgeo/geocaching/Geocache.java
+++ b/main/src/cgeo/geocaching/Geocache.java
@@ -212,7 +212,7 @@ public class Geocache implements ICache, IWaypoint {
// if parsed cache is not yet detailed and stored is, the information of
// the parsed cache will be overwritten
if (!detailed && other.detailed) {
- detailed = other.detailed;
+ detailed = true;
detailedUpdate = other.detailedUpdate;
// boolean values must be enumerated here. Other types are assigned outside this if-statement
reliableLatLon = other.reliableLatLon;