fixed anonymous function in xhtml. no review.

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@22331 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
rytz 2010-06-16 19:59:49 +00:00
parent a30fa08489
commit 5d81556315
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ object Xhtml
*
* @param node the node
*/
def toXhtml(node: Node): String = sbToString(toXhtml(x = node, sb = _))
def toXhtml(node: Node): String = sbToString(sb => toXhtml(x = node, sb = sb))
/**
* Convenience function: amounts to calling toXhtml(node) on each
@ -21,7 +21,7 @@ object Xhtml
*
* @param nodeSeq the node sequence
*/
def toXhtml(nodeSeq: NodeSeq): String = sbToString(sequenceToXML(nodeSeq: Seq[Node], sb = _))
def toXhtml(nodeSeq: NodeSeq): String = sbToString(sb => sequenceToXML(nodeSeq: Seq[Node], sb = sb))
/** Elements which we believe are safe to minimize if minimizeTags is true.
* See http://www.w3.org/TR/xhtml1/guidelines.html#C_3