You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do not think it should be. In fact, I do not think that Scala XML should expose any "content handlers" or "factory adapters" at all - methods like XML.load(InputStteam) seem sufficient...
Uh oh!
There was an error while loading. Please reload this page.
This used to work a while ago
This bypasses
FactoryAdapter.loadDocument
, which is used internally within scala.xml.Currently:
rootElem
is set tonull
endDocument
crashes withNone.get
inxmlReader.get.getProperty(...)
I came across some code at a customer that uses
NoBindingFactoryAdapter
as aContentHandler
in their internal XML library to convert to scala.xml.I can work around it by overriding
def endDocument()
, getting out therootElem
and avoid callingsuper.endDocument()
.I don't know if the use case should be supported?
The text was updated successfully, but these errors were encountered: