From 8b28292b5379a34fad0599335116b9e54ee44e20 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 8 Aug 2011 06:56:21 +0000 Subject: 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. --- test/files/jvm/xmlstuff.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files/jvm/xmlstuff.scala') diff --git a/test/files/jvm/xmlstuff.scala b/test/files/jvm/xmlstuff.scala index 08aa716352..f2ad0307b1 100644 --- a/test/files/jvm/xmlstuff.scala +++ b/test/files/jvm/xmlstuff.scala @@ -27,7 +27,7 @@ object Test { ; - val pelems_1 = for( val x <- p \ "bar"; val y <- p \ "baz" ) yield { + val pelems_1 = for (x <- p \ "bar"; y <- p \ "baz" ) yield { Text(x.attributes("value").toString + y.attributes("bazValue").toString+ "!") }; val pelems_2 = new NodeSeq { val theSeq = List(Text("38!"),Text("58!")) }; -- cgit v1.2.3