Skip to content

Commit

Permalink
Remove usages of StringUtils#join (#9003)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Mar 1, 2024
1 parent bf82c47 commit aff3714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@
* THE SOFTWARE.
*/

import org.apache.commons.lang.StringUtils

div {
p {
raw(_("p1"))
br {}
code {
text(StringUtils.join(org.apache.tools.ant.DirectoryScanner.defaultExcludes, ','))
text(String.join(',', org.apache.tools.ant.DirectoryScanner.defaultExcludes))
}
}
p {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@
* THE SOFTWARE.
*/

import org.apache.commons.lang.StringUtils

div {
p {
raw(_("p1"))
br {}
code {
text(StringUtils.join(org.apache.tools.ant.DirectoryScanner.defaultExcludes, ','))
text(String.join(',', org.apache.tools.ant.DirectoryScanner.defaultExcludes))
}
}
p {
Expand Down

0 comments on commit aff3714

Please sign in to comment.