Skip to content

Commit

Permalink
style: rename method parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-godoy authored and paodb committed Sep 12, 2024
1 parent 5c82e40 commit 8870d6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ public LocaleComboBox() {
*
* @param locales the {@code Collection} of {@code Locale} to include in the combobox
*/
public LocaleComboBox(Collection<Locale> items) {
public LocaleComboBox(Collection<Locale> locales) {
this();
setItems(items);
setItems(locales);
}

/**
Expand Down

0 comments on commit 8870d6b

Please sign in to comment.