Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
devops committed Aug 22, 2024
2 parents cf40e35 + 0055fe7 commit c90693b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k-frontend/src/main/java/org/kframework/kil/UserList.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ public class UserList extends ProductionItem {

public UserList(Sort sort, String separator) {
this.sort = sort;
this.separator = separator.trim();
this.separator = separator;
this.listType = ZERO_OR_MORE;
}

public UserList(Sort sort, String separator, String listType) {
this.sort = sort;
this.separator = separator.trim();
this.separator = separator;
this.listType = listType;
}

Expand Down Expand Up @@ -58,7 +58,7 @@ public String getSeparator() {
}

public void setSeparator(String separator) {
this.separator = separator.trim();
this.separator = separator;
}

@Override
Expand Down

0 comments on commit c90693b

Please sign in to comment.