* add ktlint plugin to project and apply default code style * some manual adjustments, fix wildcard imports * update CONTRIBUTING.md * fix formatting
8 lines
227 B
Kotlin
8 lines
227 B
Kotlin
package com.keylesspalace.tusky.util
|
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
import androidx.viewbinding.ViewBinding
|
|
|
|
class BindingHolder<T : ViewBinding>(
|
|
val binding: T
|
|
) : RecyclerView.ViewHolder(binding.root)
|