diff options
| author | 2016-02-19 00:21:15 +0000 | |
|---|---|---|
| committer | 2016-02-19 00:21:16 +0000 | |
| commit | 5042001350bcc74fc58a77eb1122dc4a64a703df (patch) | |
| tree | 0ba3ea0fb3545a31e95b5c90d964724e725e0454 | |
| parent | ea2ccdf4f3aaf5c7ca2bf6d7996fd53bae33553c (diff) | |
| parent | a4e836c174dbec68e2df73fc8d63b9c2e2aa17cf (diff) | |
Merge "Make BlockSuppressalStatus constructor public so that it can be constructed by the provider." into nyc-dev
| -rw-r--r-- | core/java/android/provider/BlockedNumberContract.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/provider/BlockedNumberContract.java b/core/java/android/provider/BlockedNumberContract.java index 4d3bea441a3f..ed7c7c5e4868 100644 --- a/core/java/android/provider/BlockedNumberContract.java +++ b/core/java/android/provider/BlockedNumberContract.java @@ -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; } |