split some lines

This commit is contained in:
Tibor Kaputa 2022-07-31 17:01:25 +02:00 committed by GitHub
parent f6060ac251
commit 3efb30b874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ class AutoGridLayoutManager(
) : GridLayoutManager(context, 1) { ) : GridLayoutManager(context, 1) {
init { init {
require(itemWidth >= 0) { "itemWidth must be >= 0" } require(itemWidth >= 0) {
"itemWidth must be >= 0"
}
} }
override fun onLayoutChildren(recycler: RecyclerView.Recycler?, state: RecyclerView.State?) { override fun onLayoutChildren(recycler: RecyclerView.Recycler?, state: RecyclerView.State?) {