Skip to content

Commit

Permalink
Java added remove first and that conflicts with kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
ForceTower committed Oct 24, 2024
1 parent 030610b commit 39d30ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class SigningInFragment : UFragment() {
possibleMessages.addAll(messages)
possibleMessages.shuffle()
}
binding.textStatus.setText(possibleMessages.removeFirst())
binding.textStatus.setText(possibleMessages.removeAt(0))
Handler(Looper.getMainLooper()).postDelayed(
{
if (lifecycle.currentState.isAtLeast(Lifecycle.State.STARTED)) {
Expand Down

0 comments on commit 39d30ee

Please sign in to comment.