Fixed RestrictBackgroundStatus signature by adding @hide.

BUG: 26082535
Change-Id: I2e4b63327a8f791db01ee0c1ab090557170857fa
This commit is contained in:
Felipe Leme
2016-01-25 11:48:04 -08:00
parent e4cff08ce6
commit 1b42ef950f

View File

@@ -3051,12 +3051,13 @@ public class ConnectivityManager {
*/
public static final int RESTRICT_BACKGROUND_STATUS_ENABLED = 3;
/** @hide */
@Retention(RetentionPolicy.SOURCE)
@IntDef(flag = false, value = {
RESTRICT_BACKGROUND_STATUS_DISABLED,
RESTRICT_BACKGROUND_STATUS_WHITELISTED,
RESTRICT_BACKGROUND_STATUS_ENABLED,
})
@Retention(RetentionPolicy.SOURCE)
public @interface RestrictBackgroundStatus {
}