From d02399bd06ea475e7b6774bb1b4a8eb95e129bc7 Mon Sep 17 00:00:00 2001 From: buraq Date: Tue, 19 Apr 2005 09:01:14 +0000 Subject: hello - attroibutes were wrongly grounded at null --- sources/scala/xml/parsing/MarkupParser.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/scala/xml/parsing/MarkupParser.scala b/sources/scala/xml/parsing/MarkupParser.scala index 33668bbd55..e7bf6d3efd 100644 --- a/sources/scala/xml/parsing/MarkupParser.scala +++ b/sources/scala/xml/parsing/MarkupParser.scala @@ -69,7 +69,7 @@ abstract class MarkupParser { */ def xAttributes(pscope:NamespaceBinding): Pair[MetaData,NamespaceBinding] = { var scope: NamespaceBinding = pscope; - var aMap: MetaData = null; + var aMap: MetaData = Null; while( xml.Parsing.isNameStart( ch )) { val pos = this.pos; @@ -138,7 +138,7 @@ abstract class MarkupParser { if(xml.Parsing.isNameStart( ch )) xAttributes(pscope) else - Pair(null, pscope) + Pair(Null, pscope) } Triple(qname, aMap, scope); } -- cgit v1.2.3