OSDN Git Service

Make BlockSuppressalStatus constructor public so that it can be constructed by the...
authorAbhijith Shastry <ashastry@google.com>
Fri, 19 Feb 2016 00:15:58 +0000 (16:15 -0800)
committerAbhijith Shastry <ashastry@google.com>
Fri, 19 Feb 2016 00:15:58 +0000 (16:15 -0800)
BUG: 26989170
Change-Id: I9fae7fc03b34b4081c7096eb13fa38737b52efe6

core/java/android/provider/BlockedNumberContract.java

index 4d3bea4..ed7c7c5 100644 (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;
             }