summaryrefslogtreecommitdiff
path: root/test/files/xml/xhtml.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/xml/xhtml.scala')
-rw-r--r--test/files/xml/xhtml.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/xml/xhtml.scala b/test/files/xml/xhtml.scala
index 623dbfbe96..0a6fc72d56 100644
--- a/test/files/xml/xhtml.scala
+++ b/test/files/xml/xhtml.scala
@@ -8,9 +8,9 @@ object Test {
def main( argv:Array[String] ) = {
val link = A(PCDATA("link"));
- val m = new scala.xml.javaAdapter.HashMap[String, String];
- m.put("href","http://lampwww.epfl.ch");
- link.setAttribs(m);
+ //val m = new scala.collection.mutable.HashMap[String, String];
+ //m.put("href","http://lampwww.epfl.ch");
+ //link.setAttribs(m);
val body = Body(
H1(PCDATA("Welcome to xhtml in scala")),