Skip to content

Commit

Permalink
refactor!: change DateTimePickerI18n methods to return this (#6329)
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen authored May 31, 2024
1 parent 7b814e5 commit d21563a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,16 +426,18 @@ public String getDateLabel() {
return dateLabel;
}

public void setDateLabel(String dateLabel) {
public DateTimePickerI18n setDateLabel(String dateLabel) {
this.dateLabel = dateLabel;
return this;
}

public String getTimeLabel() {
return timeLabel;
}

public void setTimeLabel(String timeLabel) {
public DateTimePickerI18n setTimeLabel(String timeLabel) {
this.timeLabel = timeLabel;
return this;
}
}

Expand Down

0 comments on commit d21563a

Please sign in to comment.