summaryrefslogtreecommitdiffstats
path: root/core/java/android/hardware
diff options
context:
space:
mode:
authorJungshik Jang <jayjang@google.com>2014-07-23 23:30:00 +0900
committerJungshik Jang <jayjang@google.com>2014-07-23 23:30:00 +0900
commita00161675f6b75c4e0e798d5fc9d8a6268c99047 (patch)
tree70e02617b5e3ac2af67f678bb424bf14f0eb8339 /core/java/android/hardware
parentbffb0635aaaaf9140d9120e3f3d95a4f7391a0ac (diff)
downloadframeworks_base-a00161675f6b75c4e0e798d5fc9d8a6268c99047.zip
frameworks_base-a00161675f6b75c4e0e798d5fc9d8a6268c99047.tar.gz
frameworks_base-a00161675f6b75c4e0e798d5fc9d8a6268c99047.tar.bz2
Fix unknown tag @throw
Change-Id: I8c017a83175c447d02d8eb28f571e31921ae77c6
Diffstat (limited to 'core/java/android/hardware')
-rw-r--r--core/java/android/hardware/hdmi/HdmiTimerRecordSources.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java b/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java
index 03efd8c..b51fa2b 100644
--- a/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java
+++ b/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java
@@ -141,7 +141,7 @@ public class HdmiTimerRecordSources {
* @param hour hour in range of [0, 24]
* @param minute minute in range of [0, 60]
* @return {@link Duration}
- * @throw IllegalArgumentException if hour or minute is out of range
+ * @throws IllegalArgumentException if hour or minute is out of range
*/
public static Time ofTime(int hour, int minute) {
checkTimeValue(hour, minute);
@@ -163,7 +163,7 @@ public class HdmiTimerRecordSources {
* @param hour hour in range of [0, 90]
* @param minute minute in range of [0, 60]
* @return {@link Duration}
- * @throw IllegalArgumentException if hour or minute is out of range
+ * @throws IllegalArgumentException if hour or minute is out of range
*/
public static Duration ofDuration(int hour, int minute) {
checkDurationValue(hour, minute);
@@ -254,7 +254,7 @@ public class HdmiTimerRecordSources {
* {@link #RECORDING_SEQUENCE_REPEAT_FRIDAY},
* {@link #RECORDING_SEQUENCE_REPEAT_SATUREDAY}.
* @return {@link TimerInfo}.
- * @throw IllegalArgumentException if input value is invalid
+ * @throws IllegalArgumentException if input value is invalid
*/
public static TimerInfo timerInfoOf(int dayOfMonth, int monthOfYear, Time startTime,
Duration duration, int recordingSequence) {