diff options
| -rw-r--r-- | main/src/cgeo/geocaching/connector/gc/GCMap.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/connector/gc/GCMap.java b/main/src/cgeo/geocaching/connector/gc/GCMap.java index be4c17b..97e7426 100644 --- a/main/src/cgeo/geocaching/connector/gc/GCMap.java +++ b/main/src/cgeo/geocaching/connector/gc/GCMap.java @@ -211,8 +211,7 @@ public class GCMap { cache.setCoords(tile.getCoord(xy)); if (strategy.flags.contains(StrategyFlag.PARSE_TILES) && bitmap != null) { for (UTFGridPosition singlePos : singlePositions.get(id)) { - if (IconDecoder.parseMapPNG(cache, bitmap, singlePos, tile.getZoomlevel())) - { + if (IconDecoder.parseMapPNG(cache, bitmap, singlePos, tile.getZoomlevel())) { break; // cache parsed } } |
