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

Commit 10b792bb authored by MarcKe's avatar MarcKe Committed by Ethan Chen
Browse files

Telecomm: Fix typo in toString call

Change-Id: I8f67f3f40722f75bf0fe3f1fabcc0d4fa965b2cc
parent 32f1768f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,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));
    }