Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
alorma committed Sep 3, 2021
1 parent bda5d5d commit 922f0f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}

apply from: "${rootDir}/scripts/publish-root.gradle"
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import com.adevinta.android.barista.internal.viewaction.ViewPager2SwipeAction.Di
import org.hamcrest.Matcher
import org.hamcrest.Matchers.allOf
import org.hamcrest.Matchers.anyOf
import java.util.Locale

object SwipeActions {

Expand Down Expand Up @@ -142,7 +143,7 @@ private class GeneralSwipeWithPartiallyVisibleViewAction(
}

override fun getDescription(): String {
return swiper.toString().toLowerCase() + " swipe"
return swiper.toString().lowercase(Locale.getDefault()) + " swipe"
}

companion object {
Expand Down

0 comments on commit 922f0f1

Please sign in to comment.