Added comments to empty overrides to satisfy sonar lint

This commit is contained in:
Dominik Dzienia 2023-08-28 15:31:33 +02:00
parent 6b674d0f33
commit 32969f75ed

View file

@ -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 {