Skip to content

Commit

Permalink
don't print unnecessary errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbarela committed Dec 20, 2022
1 parent 6799776 commit 791c152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/Marlin/Map/FetchRequestTileOverlay.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ class PredicateTileOverlay<T : MapImage>: MKTileOverlay, PredicateBasedTileOverl
case .success(let value):
result(value.image.pngData(), nil)

case .failure(let error):
print(error)
case .failure(_):
break
}
}
}
Expand Down

0 comments on commit 791c152

Please sign in to comment.