google-java-format a line that was too long (#12147)

This commit is contained in:
John Cormie 2025-06-11 12:19:19 -07:00 committed by GitHub
parent 297ab05efe
commit 30f6a4db77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -300,7 +300,10 @@ public abstract class BinderTransport implements IBinder.DeathRecipient {
@Override
public synchronized void binderDied() {
shutdownInternal(Status.UNAVAILABLE.withDescription("Peer process crashed, exited or was killed (binderDied)"), true);
shutdownInternal(
Status.UNAVAILABLE.withDescription(
"Peer process crashed, exited or was killed (binderDied)"),
true);
}
@GuardedBy("this")