refactor: minor code style refactoring

This commit is contained in:
Nikita Semenov 2023-04-14 12:09:12 +03:00
parent 0612370587
commit 26a7578dc8
1 changed files with 1 additions and 3 deletions

View File

@ -54,9 +54,7 @@ open class TIDeeplinksService<Deeplink: Hashable> {
/// Mapping the given url to deeplink model and appending it to the queue.
/// - Parameter url: URL to map into deeplink model
open func deferredHandle(url: URL) {
let deeplink = deeplinkMapper?.map(url: url)
guard let deeplink = deeplink else {
guard let deeplink = deeplinkMapper?.map(url: url) else {
return
}