aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgCache.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-10-09 12:15:53 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-10-09 12:15:55 +0200
commit57074a76937412d57d0260449edee47e016bc510 (patch)
tree64935ffa1e821f220cd6362f594f26b6f39381a4 /main/src/cgeo/geocaching/cgCache.java
parent4fd81318fb41f4e53e5c56aaf84d531d8b385c69 (diff)
downloadcgeo-57074a76937412d57d0260449edee47e016bc510.zip
cgeo-57074a76937412d57d0260449edee47e016bc510.tar.gz
cgeo-57074a76937412d57d0260449edee47e016bc510.tar.bz2
Remove comparisons to booleans
Diffstat (limited to 'main/src/cgeo/geocaching/cgCache.java')
-rw-r--r--main/src/cgeo/geocaching/cgCache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgCache.java b/main/src/cgeo/geocaching/cgCache.java
index 3515286..210f5e6 100644
--- a/main/src/cgeo/geocaching/cgCache.java
+++ b/main/src/cgeo/geocaching/cgCache.java
@@ -96,7 +96,7 @@ public class cgCache implements ICache {
}
updated = System.currentTimeMillis();
- if (detailed == false && other.detailed) {
+ if (!detailed && other.detailed) {
detailed = true;
detailedUpdate = updated;
}