Skip to content

Commit

Permalink
Handle Android SDK 35 API collision
Browse files Browse the repository at this point in the history
  • Loading branch information
AntsyLich committed Aug 11, 2024
1 parent c5994e0 commit fdb9617
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ abstract class Installer(private val service: Service) {
}
val nextEntry = queue.first()
if (waitingInstall.compareAndSet(null, nextEntry)) {
queue.removeFirst()
queue.removeAt(0)
processEntry(nextEntry)
}
}
Expand Down

0 comments on commit fdb9617

Please sign in to comment.