UploadCategoryAdapter.kt: corrected class definition format to meet ktlint standard

This commit is contained in:
tristan81 2024-09-18 22:06:43 +10:00
parent c6dd524307
commit 45103b529e

View file

@ -4,9 +4,7 @@ import fr.free.nrw.commons.category.CategoryItem
import org.jetbrains.annotations.NotNull import org.jetbrains.annotations.NotNull
class UploadCategoryAdapter( class UploadCategoryAdapter(
onCategoryClicked: onCategoryClicked: @NotNull (CategoryItem) -> Unit,
@NotNull()
(CategoryItem) -> Unit,
nearbyPlaceCategory: String?, nearbyPlaceCategory: String?,
) : BaseDelegateAdapter<CategoryItem>( ) : BaseDelegateAdapter<CategoryItem>(
uploadCategoryDelegate(onCategoryClicked, nearbyPlaceCategory), uploadCategoryDelegate(onCategoryClicked, nearbyPlaceCategory),