- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #1773: XML strange equals behaviour
Sat, 2009-03-07, 01:07
-------------------------+--------------------------------------------------
Reporter: michael.kebe | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: xml equals |
-------------------------+--------------------------------------------------
There is something wrong with the equals or with the XML processing stuff.
Look at this:
{{{
scala>
res0: scala.xml.Elem =
scala> {xml.NodeSeq.Empty}
res1: scala.xml.Elem =
scala> {""}
res2: scala.xml.Elem =
scala> {if (true) "" else "noo"}
res3: scala.xml.Elem =
scala> res0 == res1
res4: Boolean = true
scala> res0 == res2
res5: Boolean = true
scala> res0 == res3
res6: Boolean = false
}}}
I would expect that res0, res1, res2, res3 are all the same. So the result
for each comparison should be true. But in the last case scala says
false...
-----------------------------+----------------------------------------------
Reporter: michael.kebe | Owner: scala-xml_team
Type: defect | Status: closed
Priority: normal | Component: XML support
Version: Unreleased-2.8.x | Resolution: fixed
Keywords: xml equals |
-----------------------------+----------------------------------------------
Changes (by extempore):
* cc: paulp@… (added)
* status: new => closed
* version: => Unreleased-2.8.x
* resolution: => fixed
Comment:
Fixed in r17617.