Merge "Make the BlockSuppressionStatus constructor" into main
diff --git a/core/api/system-current.txt b/core/api/system-current.txt
index b42c4da..003e836 100644
--- a/core/api/system-current.txt
+++ b/core/api/system-current.txt
@@ -12260,7 +12260,6 @@
}
@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();
}
diff --git a/core/java/android/provider/BlockedNumbersManager.java b/core/java/android/provider/BlockedNumbersManager.java
index aee396d..a0dc176 100644
--- a/core/java/android/provider/BlockedNumbersManager.java
+++ b/core/java/android/provider/BlockedNumbersManager.java
@@ -357,7 +357,7 @@
*/
private long mUntilTimestampMillis;
- public BlockSuppressionStatus(boolean isSuppressed, long untilTimestampMillis) {
+ BlockSuppressionStatus(boolean isSuppressed, long untilTimestampMillis) {
this.mIsSuppressed = isSuppressed;
this.mUntilTimestampMillis = untilTimestampMillis;
}