diff --git a/vtm/src/org/oscim/layers/tile/s3db/S3DBTileLoader.java b/vtm/src/org/oscim/layers/tile/s3db/S3DBTileLoader.java index 7be3b3c1..2d2eff94 100644 --- a/vtm/src/org/oscim/layers/tile/s3db/S3DBTileLoader.java +++ b/vtm/src/org/oscim/layers/tile/s3db/S3DBTileLoader.java @@ -1,7 +1,5 @@ package org.oscim.layers.tile.s3db; -import java.util.concurrent.CancellationException; - import org.oscim.backend.canvas.Color; import org.oscim.core.GeometryBuffer.GeometryType; import org.oscim.core.MapElement; @@ -56,9 +54,6 @@ class S3DBTileLoader extends TileLoader { try { /* query database, which calls process() callback */ mTileDataSource.query(mTile, this); - } catch (CancellationException e) { - log.debug("{}", e); - return false; } catch (Exception e) { log.debug("{}", e); return false;