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

Commit d05088fb authored by Pranav Madapurmath's avatar Pranav Madapurmath Committed by Android (Google) Code Review
Browse files

Merge "Make the BlockSuppressionStatus constructor" into main

parents e472f497 7703a5d5
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -12260,7 +12260,6 @@ package android.provider {
  }
  @FlaggedApi("com.android.server.telecom.flags.telecom_mainline_blocked_numbers_manager") public static final class BlockedNumbersManager.BlockSuppressionStatus {
    ctor public BlockedNumbersManager.BlockSuppressionStatus(boolean, long);
    method public boolean getIsSuppressed();
    method public long getUntilTimestampMillis();
  }
+1 −1
Original line number Diff line number Diff line
@@ -357,7 +357,7 @@ public final class BlockedNumbersManager {
         */
        private long mUntilTimestampMillis;

        public BlockSuppressionStatus(boolean isSuppressed, long untilTimestampMillis) {
        BlockSuppressionStatus(boolean isSuppressed, long untilTimestampMillis) {
            this.mIsSuppressed = isSuppressed;
            this.mUntilTimestampMillis = untilTimestampMillis;
        }