Skip to content

Commit 7f8a3fb

Browse files
retronymadriaanm
authored andcommitted
Remove redundant 'val' from case class params.
1 parent a6cb98d commit 7f8a3fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library/scala/xml/Group.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package scala.xml
1313
* @author Burak Emir
1414
* @version 1.0
1515
*/
16-
final case class Group(val nodes: Seq[Node]) extends Node {
16+
final case class Group(nodes: Seq[Node]) extends Node {
1717
override def theSeq = nodes
1818

1919
override def canEqual(other: Any) = other match {

0 commit comments

Comments
 (0)