Remove useless constructor keyword.

This commit is contained in:
Benoit Marty 2023-12-12 11:26:40 +01:00 committed by Benoit Marty
parent e0a9e550f6
commit b0872d9b58
5 changed files with 5 additions and 5 deletions

View file

@ -37,7 +37,7 @@ import java.util.UUID
import javax.inject.Inject
@ContributesBinding(AppScope::class)
class PickerProviderImpl constructor(private val isInTest: Boolean) : PickerProvider {
class PickerProviderImpl(private val isInTest: Boolean) : PickerProvider {
@Inject
constructor(): this(false)