Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 791c152

Browse files
committed
don't print unnecessary errors
1 parent 6799776 commit 791c152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/Marlin/Map/FetchRequestTileOverlay.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class PredicateTileOverlay<T : MapImage>: MKTileOverlay, PredicateBasedTileOverl
6060
case .success(let value):
6161
result(value.image.pngData(), nil)
6262

63-
case .failure(let error):
64-
print(error)
63+
case .failure(_):
64+
break
6565
}
6666
}
6767
}

0 commit comments

Comments
 (0)