This page is no longer maintained — Please continue to the home page at www.scala-lang.org

[scala-bts] #1773: XML strange equals behaviour

1 reply
Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.

-------------------------+--------------------------------------------------
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...

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #1773: XML strange equals behaviour

-----------------------------+----------------------------------------------
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.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland