Skip to content

Commit

Permalink
fix: Kotlin fuckup with sdk 35 (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadwhy authored Dec 16, 2024
1 parent b04a176 commit 01a64c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,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 01a64c2

Please sign in to comment.