Skip to content

Commit

Permalink
Apply ktlint format to ContractsExtensions.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
zltnDC committed Sep 15, 2023
1 parent 937da39 commit 2d82c88
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private fun Selector.isEmpty(): Boolean {
!hasEnabled() &&
!hasFocused() &&
!hasPkg()
)
)
}

fun Selector.toUiSelector(): UiSelector {
Expand Down Expand Up @@ -95,7 +95,8 @@ fun Selector.toBySelector(): BySelector {
var matchedFocused = false
var matchedPkg = false

var bySelector = if (hasText()) {
var bySelector =
if (hasText()) {
matchedText = true
By.text(text)
} else if (hasTextStartsWith()) {
Expand Down

0 comments on commit 2d82c88

Please sign in to comment.