@@ -46,14 +46,14 @@ object Utility extends AnyRef with parsing.TokenTests {
46
46
*/
47
47
def trim (x : Node ): Node = x match {
48
48
case Elem (pre, lab, md, scp, child@_* ) =>
49
- val children = combineAdjacentTextNodes(child:_* ) flatMap trimProper
49
+ val children = combineAdjacentTextNodes(child) flatMap trimProper
50
50
Elem (pre, lab, md, scp, children.isEmpty, children : _* )
51
51
}
52
52
53
- private def combineAdjacentTextNodes (children : Node * ): Seq [Node ] = {
53
+ private def combineAdjacentTextNodes (children : Seq [ Node ] ): Seq [Node ] = {
54
54
children.foldRight(Seq .empty[Node ]) {
55
- case (Text (left), Text (right) +: accMinusLast ) => Text (left + right) +: accMinusLast
56
- case (n, acc ) => n +: acc
55
+ case (Text (left), Text (right) +: nodes ) => Text (left + right) +: nodes
56
+ case (n, nodes ) => n +: nodes
57
57
}
58
58
}
59
59
@@ -63,7 +63,7 @@ object Utility extends AnyRef with parsing.TokenTests {
63
63
*/
64
64
def trimProper (x : Node ): Seq [Node ] = x match {
65
65
case Elem (pre, lab, md, scp, child@_* ) =>
66
- val children = combineAdjacentTextNodes(child:_* ) flatMap trimProper
66
+ val children = combineAdjacentTextNodes(child) flatMap trimProper
67
67
Elem (pre, lab, md, scp, children.isEmpty, children : _* )
68
68
case Text (s) =>
69
69
new TextBuffer ().append(s).toText
0 commit comments