Added comments to empty overrides to satisfy sonar lint
This commit is contained in:
parent
6b674d0f33
commit
32969f75ed
1 changed files with 6 additions and 2 deletions
|
@ -70,9 +70,13 @@ class SmsCommunicatorOtpActivity : TranslatedDaggerAppCompatActivity() {
|
|||
)
|
||||
}
|
||||
|
||||
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {}
|
||||
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
|
||||
/* left blank because we only need afterTextChanged */
|
||||
}
|
||||
|
||||
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {}
|
||||
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
|
||||
/* left blank because we only need afterTextChanged */
|
||||
}
|
||||
})
|
||||
|
||||
binding.otpReset.setOnClickListener {
|
||||
|
|
Loading…
Reference in a new issue