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

Commit bdb52367 authored by Mythri Alle's avatar Mythri Alle Committed by Android (Google) Code Review
Browse files

Merge "Fix choosing the default output format in ProfilerInfo" into main

parents 068eb1f8 e93f45aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ public class ProfilerInfo implements Parcelable {
    public static int getFlagsForOutputVersion(int version) {
        // Only two version 1 and version 2 are supported. Just use the default if we see an unknown
        // version.
        if (version != 1 || version != 2) {
        if (version != 1 && version != 2) {
            version = OUTPUT_VERSION_DEFAULT;
        }