Update scala-library to 2.13.8 (#31111)

* Update scala-library to 2.13.8
* Deal with some new deprecation errors
* Remove test for deprecated feature
Co-authored-by: Arnout Engelen <arnout@bzzt.net>
This commit is contained in:
Scala Steward 2022-02-16 09:31:21 +01:00 committed by GitHub
parent 066bd2a91b
commit afac726b69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 21 additions and 200 deletions

View file

@ -41,7 +41,7 @@ public class MyUnboundedMailbox
}
public void cleanUp(ActorRef owner, MessageQueue deadLetters) {
while(!queue.isEmpty()) {
while (!queue.isEmpty()) {
deadLetters.enqueue(owner, dequeue());
}
}