Skip to content

Commit 8870d6b

Browse files
javier-godoypaodb
authored andcommitted
style: rename method parameter
1 parent 5c82e40 commit 8870d6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/flowingcode/vaadin/addons/localecombobox/LocaleComboBox.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ public LocaleComboBox() {
9898
*
9999
* @param locales the {@code Collection} of {@code Locale} to include in the combobox
100100
*/
101-
public LocaleComboBox(Collection<Locale> items) {
101+
public LocaleComboBox(Collection<Locale> locales) {
102102
this();
103-
setItems(items);
103+
setItems(locales);
104104
}
105105

106106
/**

0 commit comments

Comments
 (0)