diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2014-08-04 00:23:07 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2014-08-04 00:42:20 +0200 |
| commit | 487b3308f3c93ad349d7d732ff410e7f463c9322 (patch) | |
| tree | 5eaebf3ee533391fcd78e64744f00247db768c35 | |
| parent | 73c9a69ec9b2c4eb05eb2aa0ea76f4a1aa426eb0 (diff) | |
| download | cgeo-487b3308f3c93ad349d7d732ff410e7f463c9322.zip cgeo-487b3308f3c93ad349d7d732ff410e7f463c9322.tar.gz cgeo-487b3308f3c93ad349d7d732ff410e7f463c9322.tar.bz2 | |
Remove unnecessary parentheses
| -rw-r--r-- | main/src/cgeo/geocaching/settings/Settings.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/settings/Settings.java b/main/src/cgeo/geocaching/settings/Settings.java index 01ebd6f..b0fc962 100644 --- a/main/src/cgeo/geocaching/settings/Settings.java +++ b/main/src/cgeo/geocaching/settings/Settings.java @@ -612,7 +612,7 @@ public class Settings { mapSource = MapProviderFactory.getMapSource(id); if (mapSource != null) { // don't use offline maps if the map file is not valid - if ((!(mapSource instanceof OfflineMapSource)) || (isValidMapFile())) { + if (!(mapSource instanceof OfflineMapSource) || isValidMapFile()) { return mapSource; } } |
