From ecbead236f6f67750da64e909d1910cbc048d06a Mon Sep 17 00:00:00 2001 From: Paola De Bartolo Date: Fri, 8 Nov 2024 17:11:11 -0300 Subject: [PATCH] docs: fix javadoc warnings Close #8 --- .../vaadin/addons/dayofweekselector/DayOfWeekSelector.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/flowingcode/vaadin/addons/dayofweekselector/DayOfWeekSelector.java b/src/main/java/com/flowingcode/vaadin/addons/dayofweekselector/DayOfWeekSelector.java index 593720c..9a25595 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/dayofweekselector/DayOfWeekSelector.java +++ b/src/main/java/com/flowingcode/vaadin/addons/dayofweekselector/DayOfWeekSelector.java @@ -190,7 +190,6 @@ public void setI18N(DatePickerI18n i18n) { * Sets the short names of the week days, starting from {@code sun} and ending on {@code sat}. * * @param weekdaysShort the short names of the week days - * @return this instance for method chaining */ public void setWeekDaysShort(List weekdaysShort) { Objects.requireNonNull(weekdaysShort); @@ -209,8 +208,7 @@ public void setWeekDaysShort(List weekdaysShort) { * 0 for Sunday, 1 for Monday, 2 for Tuesday, 3 for Wednesday, 4 for Thursday, 5 for Friday, 6 for * Saturday. * - * @param firstDayOfWeek the index of the first day of the week - * @return this instance for method chaining + * @param first the index of the first day of the week * @throws IllegalArgumentException if firstDayOfWeek is invalid */ public void setFirstDayOfWeek(DayOfWeek first) {