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

Commit 76f860ed authored by Shai Barack's avatar Shai Barack Committed by Android (Google) Code Review
Browse files

Merge "Fix Precondition error string missing a format specifier" into main

parents 476d1738 204e4ffd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1492,7 +1492,7 @@ public final class FadeManagerConfiguration implements Parcelable {

        private void validateContentType(int contentType) {
            Preconditions.checkArgument(AudioAttributes.isSdkContentType(contentType),
                    "Invalid content type: ", contentType);
                    "Invalid content type: %d", contentType);
        }

        private void validateFadeConfigurations() {