summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/Document.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/xml/Document.scala b/sources/scala/xml/Document.scala
index a19a2316f3..cf34721a43 100644
--- a/sources/scala/xml/Document.scala
+++ b/sources/scala/xml/Document.scala
@@ -69,6 +69,6 @@ class Document extends NodeSeq {
// methods for NodeSeq
- def theSeq = docElem;
+ def theSeq: Seq[Node] = this.docElem ;
}