summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-10-02 12:51:16 +0000
committerburaq <buraq@epfl.ch>2003-10-02 12:51:16 +0000
commitd39fa1bb4731d30df0fd08288e2437f8764fe6b9 (patch)
tree7c01204026b92aa6beebd097fb294508368f488d
parent4500aea22473b9ce61e4487e3cceeedb26382d8d (diff)
downloadscala-d39fa1bb4731d30df0fd08288e2437f8764fe6b9.tar.gz
scala-d39fa1bb4731d30df0fd08288e2437f8764fe6b9.tar.bz2
scala-d39fa1bb4731d30df0fd08288e2437f8764fe6b9.zip
removed setChildren, 1st step to make elements ...
removed setChildren, 1st step to make elements immutable
-rw-r--r--sources/scala/xml/Element.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/sources/scala/xml/Element.scala b/sources/scala/xml/Element.scala
index f604d5f7c2..9a128be66a 100644
--- a/sources/scala/xml/Element.scala
+++ b/sources/scala/xml/Element.scala
@@ -9,7 +9,6 @@ abstract class Element {
def getName: String; // the real element name
def getChildren: Seq[ Element ]; // the children
- def setChildren( l:Seq[ Element ] ):Unit ;
def getAttribs: Map[ String, String ]; // disabled
def setAttribs( m:Map[ String, String ] ):Unit ;