Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ddf15a16 authored by Nancy Chen's avatar Nancy Chen
Browse files

Change a semi-colon to a colon in AudioState logging.

I believe "route;" -> "route:" was the intended context.

Bug: 18327621
Change-Id: I5fcd285f58dcd74287937babf3f0a8122dab5d3d
parent 75f304f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ public final class AudioState implements Parcelable {
    @Override
    public String toString() {
        return String.format(Locale.US,
                "[AudioState isMuted: %b, route; %s, supportedRouteMask: %s]",
                "[AudioState isMuted: %b, route: %s, supportedRouteMask: %s]",
                isMuted,
                audioRouteToString(route),
                audioRouteToString(supportedRouteMask));