Skip to content

Commit

Permalink
update JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen committed Jul 11, 2024
1 parent 7dc2420 commit 21019e4
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -699,20 +699,19 @@ private static String format(LocalTime time) {
* <p>
* NOTE: Updating the instance that is returned from this method will not
* update the component if not set again using
* {@link TimePicker#setI18n(TimePickerI18n)}
* {@link #setI18n(TimePickerI18n)}
*
* @return the i18n object. It will be {@code null}, If the i18n properties
* weren't set.
* @return the i18n object or {@code null} if no i18n object has been set
*/
public TimePickerI18n getI18n() {
return i18n;
}

/**
* Sets the internationalization properties for this component.
* Sets the internationalization object for this component.
*
* @param i18n
* the internationalized properties, not {@code null}
* the i18n object, not {@code null}
*/
public void setI18n(TimePickerI18n i18n) {
this.i18n = Objects.requireNonNull(i18n,
Expand Down

0 comments on commit 21019e4

Please sign in to comment.