Skip to content

Commit 7f53a7a

Browse files
paulpadriaanm
authored andcommitted
Fixing all the tests and source which still use...
Fixing all the tests and source which still use the old for comprehension syntax with vals where there are no vals and no vals where there are vals. No review.
1 parent 45009c2 commit 7f53a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/files/jvm/xmlstuff.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object Test {
2727
<bar value="5" gi='go'/>
2828
</foo>;
2929

30-
val pelems_1 = for( val x <- p \ "bar"; val y <- p \ "baz" ) yield {
30+
val pelems_1 = for (x <- p \ "bar"; y <- p \ "baz" ) yield {
3131
Text(x.attributes("value").toString + y.attributes("bazValue").toString+ "!")
3232
};
3333
val pelems_2 = new NodeSeq { val theSeq = List(Text("38!"),Text("58!")) };

0 commit comments

Comments
 (0)