Make Engine.awaitPendingClose protected (#130004)

So that the method can be used by classes implementing the Engine
abstract class.
This commit is contained in:
Tanguy Leroux 2025-06-26 12:53:21 +02:00 committed by GitHub
parent 9e06a22398
commit 65788cb6fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2199,7 +2199,7 @@ public abstract class Engine implements Closeable {
awaitPendingClose();
}
private void awaitPendingClose() {
protected final void awaitPendingClose() {
try {
closedLatch.await();
} catch (InterruptedException e) {