Skip to content

Commit

Permalink
feat(objectionary#2259): use string-join instead of concat
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Jul 21, 2023
1 parent a335afe commit 871cc31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private String xpath(final boolean versioned) {
if (versioned) {
tail = new ListOf<>(
"and @ver",
"]/concat(@base,'|',@ver)"
"]/string-join((@base, @ver),'|')"
);
} else {
tail = new ListOf<>();
Expand Down

0 comments on commit 871cc31

Please sign in to comment.