Skip to content

Commit 1a3b751

Browse files
committed
Drop varargs with Utility.combineAdjacentTextNodes
1 parent acab668 commit 1a3b751

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shared/src/main/scala/scala/xml/Utility.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ object Utility extends AnyRef with parsing.TokenTests {
4646
*/
4747
def trim(x: Node): Node = x match {
4848
case Elem(pre, lab, md, scp, child@_*) =>
49-
val children = combineAdjacentTextNodes(child:_*) flatMap trimProper
49+
val children = combineAdjacentTextNodes(child) flatMap trimProper
5050
Elem(pre, lab, md, scp, children.isEmpty, children: _*)
5151
}
5252

53-
private def combineAdjacentTextNodes(children: Node*): Seq[Node] = {
53+
private def combineAdjacentTextNodes(children: Seq[Node]): Seq[Node] = {
5454
children.foldRight(Seq.empty[Node]) {
5555
case (Text(left), Text(right) +: nodes) => Text(left + right) +: nodes
5656
case (n, nodes) => n +: nodes
@@ -63,7 +63,7 @@ object Utility extends AnyRef with parsing.TokenTests {
6363
*/
6464
def trimProper(x: Node): Seq[Node] = x match {
6565
case Elem(pre, lab, md, scp, child@_*) =>
66-
val children = combineAdjacentTextNodes(child:_*) flatMap trimProper
66+
val children = combineAdjacentTextNodes(child) flatMap trimProper
6767
Elem(pre, lab, md, scp, children.isEmpty, children: _*)
6868
case Text(s) =>
6969
new TextBuffer().append(s).toText

0 commit comments

Comments
 (0)