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

Commit a4e836c1 authored by Abhijith Shastry's avatar Abhijith Shastry
Browse files

Make BlockSuppressalStatus constructor public so that it can be constructed by the provider.

BUG: 26989170
Change-Id: I9fae7fc03b34b4081c7096eb13fa38737b52efe6
parent aafff2f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -311,7 +311,7 @@ public class BlockedNumberContract {
             */
            public final long untilTimestampMillis;

            BlockSuppressalStatus(boolean isSuppressed, long untilTimestampMillis) {
            public BlockSuppressalStatus(boolean isSuppressed, long untilTimestampMillis) {
                this.isSuppressed = isSuppressed;
                this.untilTimestampMillis = untilTimestampMillis;
            }