From 21ea2d0387e07569b3448c1161a3276599b3fbba Mon Sep 17 00:00:00 2001 From: Sam Blitzstein Date: Wed, 21 Aug 2013 16:02:21 -0700 Subject: [PATCH] Fix VALUE_RINGTONE_SILENT ref. Change-Id: I115c8d2e0e972f6d7d732071d26ae5f489b926f3 (cherry picked from commit 044ffbbbaa7dc07c2aa40a35d5d13b1b3e7bd0c0) --- core/java/android/provider/AlarmClock.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/java/android/provider/AlarmClock.java b/core/java/android/provider/AlarmClock.java index e750bc5a40e1..f3267ee233b3 100644 --- a/core/java/android/provider/AlarmClock.java +++ b/core/java/android/provider/AlarmClock.java @@ -190,13 +190,13 @@ public final class AlarmClock { *

* Used by {@link #ACTION_SET_ALARM}. *

- * This value is a {@link String} and can either be set to {@link #RINGTONE_SILENT} or to a - * content URI of the media to be played. If not specified or the URI doesn't exist, + * This value is a {@link String} and can either be set to {@link #VALUE_RINGTONE_SILENT} or + * to a content URI of the media to be played. If not specified or the URI doesn't exist, * {@code "content://settings/system/alarm_alert} will be used. *

* * @see #ACTION_SET_ALARM - * @see #RINGTONE_SILENT + * @see #VALUE_RINGTONE_SILENT * @see #EXTRA_VIBRATE */ public static final String EXTRA_RINGTONE = "android.intent.extra.alarm.RINGTONE"; @@ -227,7 +227,7 @@ public final class AlarmClock { * * @see #ACTION_SET_ALARM * @see #EXTRA_RINGTONE - * @see #RINGTONE_SILENT + * @see #VALUE_RINGTONE_SILENT */ public static final String EXTRA_VIBRATE = "android.intent.extra.alarm.VIBRATE"; -- 2.11.0