Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a80c8147 authored by Jungshik Jang's avatar Jungshik Jang Committed by Android Git Automerger
Browse files

am 50c8ab40: am a6501c7a: am 0062e49d: Merge "Fix unknown tag @throw" into lmp-dev

* commit '50c8ab40e3c46561a9a9f5e8eb518fdf960a73cf':
  Fix unknown tag @throw
parents 73cc43da 01b9a90a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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) {