Merge "Make BlockSuppressalStatus constructor public so that it can be constructed by the provider." into nyc-dev

This commit is contained in:
Abhijith Shastry
2016-02-19 00:21:15 +00:00
committed by Android (Google) Code Review

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