Enable detekt rules AlsoCouldBeApply and fix existing issues.

This commit is contained in:
Benoit Marty 2023-07-26 11:10:30 +02:00 committed by Benoit Marty
parent 1d3aa2cd05
commit d433c3cbaa
4 changed files with 8 additions and 10 deletions

View file

@ -41,8 +41,7 @@ class CustomTabHandler @Inject constructor(
if (packageName != null) {
customTabsServiceConnection = object : CustomTabsServiceConnection() {
override fun onCustomTabsServiceConnected(name: ComponentName, client: CustomTabsClient) {
customTabsClient = client
.also { it.warmup(0L) }
customTabsClient = client.apply { warmup(0L) }
prefetchUrl(url)
}