Skip to content

Commit

Permalink
For mozilla-mobile#18453 Revert unneeded code reformat.
Browse files Browse the repository at this point in the history
  • Loading branch information
kershan committed Mar 25, 2021
1 parent aa0add3 commit e794e79
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ class DeepLinkIntentProcessor(
private val logger = Logger("DeepLinkIntentProcessor")

override fun process(intent: Intent, navController: NavController, out: Intent): Boolean {
val scheme =
intent.scheme?.equals(BuildConfig.DEEP_LINK_SCHEME, ignoreCase = true) ?: return false
val scheme = intent.scheme?.equals(BuildConfig.DEEP_LINK_SCHEME, ignoreCase = true) ?: return false
return if (scheme) {
intent.data?.let { handleDeepLink(it, navController) }
true
Expand Down

0 comments on commit e794e79

Please sign in to comment.