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

Commit 83c864b5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Use primitive int for message mask" into main

parents 855ade93 2918d530
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -882,8 +882,7 @@ public class PerfettoProtoLogImpl extends IProtoLogClient.Stub implements IProto
    private static class Message {
        @Nullable
        private final Long mMessageHash;
        @Nullable
        private final Integer mMessageMask;
        private final int mMessageMask;
        @Nullable
        private final String mMessageString;

@@ -900,8 +899,7 @@ public class PerfettoProtoLogImpl extends IProtoLogClient.Stub implements IProto
            this.mMessageString = messageString;
        }

        @Nullable
        private Integer getMessageMask() {
        private int getMessageMask() {
            return mMessageMask;
        }