summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-11-25 16:05:59 +0000
committerMartin Odersky <odersky@gmail.com>2003-11-25 16:05:59 +0000
commit93fea4d99c64b1a1101d6489ca824c43f23d6227 (patch)
tree53232a0a089335c00b91310becd25cd0ed1651d1 /sources
parentbb03dbdd47581df3da8bd785f8018e06789f4c85 (diff)
downloadscala-93fea4d99c64b1a1101d6489ca824c43f23d6227.tar.gz
scala-93fea4d99c64b1a1101d6489ca824c43f23d6227.tar.bz2
scala-93fea4d99c64b1a1101d6489ca824c43f23d6227.zip
*** empty log message ***
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/AttributedNode.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/scala/xml/AttributedNode.scala b/sources/scala/xml/AttributedNode.scala
index 608a0c96e1..78b97fb0fd 100644
--- a/sources/scala/xml/AttributedNode.scala
+++ b/sources/scala/xml/AttributedNode.scala
@@ -3,6 +3,7 @@ package scala.xml ;
abstract class AttributedNode extends Node {
val attribHashCode:int;
-def attributes:Map[String,String];
+def attributes:scala.collection.Map[String,String];
+def toXML = Utility.toXML(this);
}