Skip to content

Commit

Permalink
fix : handle spaces in comma-separated qsim.seepdModes config value
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitnelav committed Nov 23, 2023
1 parent 4cf7031 commit e10fef7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ private String getSeepModesAsString() {
@StringSetter(SEEP_MODE)
private void setSeepModes(String value) {
Set<String> modes = Arrays.stream(value.split(",")).map(String::trim).collect(Collectors.toSet());
setSeepModes(Arrays.stream(modes));
setSeepModes(modes);
}

public Collection<String> getSeepModes() {
Expand Down

0 comments on commit e10fef7

Please sign in to comment.