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

Commit 04da2c2d authored by Jason Sams's avatar Jason Sams Committed by Android (Google) Code Review
Browse files

Merge "Fix build error."

parents bbad09d6 9e2b0c50
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ public class FieldPacker {
    }

    public void addBoolean(Boolean v) {
        addI8(v ? 1 : 0);
        addI8((byte)(v ? 1 : 0));
    }

    public final byte[] getData() {