From fb462ea1b336dbb9b6b71f4a835d6f6071ef9611 Mon Sep 17 00:00:00 2001 From: buraq Date: Wed, 11 Feb 2004 18:41:44 +0000 Subject: NodeList -> NodeSeq --- sources/scala/Symbol.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/scala/Symbol.scala b/sources/scala/Symbol.scala index e38dcdcde1..2c038761f5 100644 --- a/sources/scala/Symbol.scala +++ b/sources/scala/Symbol.scala @@ -11,7 +11,7 @@ package scala; import org.xml.sax.InputSource; -import scala.xml.{AttributedNode,Node,NodeList, Text,Utility}; +import scala.xml.{AttributedNode,Node,NodeSeq, Text,Utility}; import scala.collection.immutable.Map; import scala.collection.immutable.ListMap; @@ -35,7 +35,7 @@ case class Symbol(name: String, elems: Any*) extends AttributedNode { /** Returns the list of children of this symbol. */ - def children: NodeList = new NodeList( List.fromIterator( + def children: NodeSeq = new NodeSeq( List.fromIterator( elems.elements map ( x => x match { case n:Node => n; case _ => Text(x.toString()); -- cgit v1.2.3