- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #3246: scala.xml.dtd.ParsedEntityDecl: toString method not overridden
Fri, 2010-04-02, 16:15
---------------------+------------------------------------------------------
Reporter: mwkuster | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
---------------------+------------------------------------------------------
The toString method is not correctly overridden for
scala.xml.dtd.ParsedEntityDecl and related EntityDeclarations, causing an
incorrect DocType to be generated
Workaround for 2.7.7: create a local class that overrides toString:
class PE(name: String, entdef: EntityDef) extends
scala.xml.dtd.ParsedEntityDecl(name, entdef) {
override def toString : String = {
val sb = new StringBuilder()
return this.toString(sb).toString
}
}
Fri, 2010-04-02, 16:27
#2
Re: [scala-bts] #3246: scala.xml.dtd.ParsedEntityDecl: toString
---------------------+------------------------------------------------------
Reporter: mwkuster | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
---------------------+------------------------------------------------------
Comment(by mwkuster):
This problem is quite similar to
https://lampsvn.epfl.ch/trac/scala/ticket/1620
---------------------+------------------------------------------------------
Reporter: mwkuster | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
---------------------+------------------------------------------------------
Changes (by mwkuster):
* cc: mwkuster (added)