- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #2001: Xhtml.toXhtml will crash for <div></div>.
Wed, 2009-05-20, 11:38
-------------------+--------------------------------------------------------
Reporter: ymnk | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------
Xhtml.toXhtml will fail with the stacktrace in processing as
follows,
$ scala
Welcome to Scala version 2.8.0.r17745-b20090516020906 (Java
HotSpot(TM) Client VM, Java 1.6.0_06).
Type in expressions to have them evaluated.
Type :help for more information.
scala> scala.xml.Xhtml.toXhtml()
java.util.NoSuchElementException
at
scala.collection.generic.IterableTemplate$class.head(IterableTemplate.scala:96)
at
scala.runtime.BoxedArray.scala$collection$generic$VectorTemplate$$super$head(BoxedArray.scala:24)
at
scala.collection.generic.VectorTemplate$class.head(VectorTemplate.scala:136)
at scala.runtime.BoxedArray.head(BoxedArray.scala:24)
at scala.collection.generic.Tra...
scala>
The attached patch will fix it.
PS. That patch has fixed yet another bug, which fails to generate the
string.
-----------------------------+----------------------------------------------
Reporter: ymnk | Owner: scala-xml_team
Type: defect | Status: closed
Priority: normal | Component: XML support
Version: Unreleased-2.8.x | Resolution: fixed
Keywords: |
-----------------------------+----------------------------------------------
Changes (by extempore):
* cc: paulp@… (added)
* status: new => closed
* version: => Unreleased-2.8.x
* resolution: => fixed
Comment:
I'm noticing somewhere in the course of my XML patches this got fixed.
{{{
scala> scala.xml.Xhtml.toXhtml()
res2: String =
}}}