Do not use underscore in variable name

This commit is contained in:
Juha Heinanen
2023-01-26 01:54:32 +02:00
parent 92b583457f
commit b28b6b76eb

View File

@ -1701,9 +1701,9 @@ class MainActivity : AppCompatActivity() {
} }
private fun spinToAor(aor: String) { private fun spinToAor(aor: String) {
for (account_index in BaresipService.uas.indices) for (accountIndex in BaresipService.uas.indices)
if (BaresipService.uas[account_index].account.aor == aor) { if (BaresipService.uas[accountIndex].account.aor == aor) {
aorSpinner.setSelection(account_index) aorSpinner.setSelection(accountIndex)
aorSpinner.tag = aor aorSpinner.tag = aor
return return
} }