Skip to content

Commit

Permalink
keep method signature
Browse files Browse the repository at this point in the history
Co-authored-by: Jörg Hohwiller <[email protected]>
  • Loading branch information
ndemirca and hohwille authored May 27, 2024
1 parent 7e06847 commit 3d97cad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public StringProperty(String name, boolean required, String alias, boolean multi
* @param validator the {@link Consumer} used to {@link #validate() validate} the {@link #getValue() value}.
* @param multiValued
*/
public StringProperty(String name, boolean required, String alias, Consumer<String> validator, boolean multiValued) {
public StringProperty(String name, boolean required, String alias, boolean multiValued, Consumer<String> validator) {

super(name, required, alias, validator, multiValued);
}
Expand Down

0 comments on commit 3d97cad

Please sign in to comment.