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

BUG: 26989170
Change-Id: I9fae7fc03b34b4081c7096eb13fa38737b52efe6
This commit is contained in:
Abhijith Shastry
2016-02-18 16:15:58 -08:00
parent aafff2f835
commit a4e836c174

View File

@@ -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;
}