mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 12:00:03 +03:00
Fix lint issues
This commit is contained in:
parent
c382f706a6
commit
f8dca1237a
5 changed files with 4 additions and 5 deletions
|
@ -122,4 +122,4 @@ abstract class RecyclerViewPresenter<T>(context: Context?) : AutocompletePresent
|
|||
root.onChanged()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ class AutocompleteEmojiPresenter @Inject constructor(context: Context,
|
|||
controller.listener = this
|
||||
}
|
||||
|
||||
fun clear(){
|
||||
fun clear() {
|
||||
controller.listener = null
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ class AutocompleteGroupPresenter @Inject constructor(context: Context,
|
|||
controller.listener = this
|
||||
}
|
||||
|
||||
fun clear(){
|
||||
fun clear() {
|
||||
controller.listener = null
|
||||
}
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class AutocompleteMemberPresenter @AssistedInject constructor(context: Context,
|
|||
controller.listener = this
|
||||
}
|
||||
|
||||
fun clear(){
|
||||
fun clear() {
|
||||
controller.listener = null
|
||||
}
|
||||
|
||||
|
|
|
@ -115,7 +115,6 @@ class AutoCompleter @AssistedInject constructor(
|
|||
}
|
||||
})
|
||||
.build()
|
||||
|
||||
}
|
||||
|
||||
private fun setupMembers(backgroundDrawable: ColorDrawable, editText: EditText) {
|
||||
|
|
Loading…
Add table
Reference in a new issue