
name.remal.org.jdom2.input.SAXBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
The newest version!
package name.remal
import org.jdom2.input.SAXBuilder
import org.jdom2.input.sax.XMLReaders
import org.xml.sax.InputSource
import java.io.StringReader
fun SAXBuilder.setNoValidatingXMLReaderFactory() {
xmlReaderFactory = XMLReaders.NONVALIDATING
}
fun SAXBuilder.setNoOpEntityResolver() {
setEntityResolver { _, _ -> InputSource(StringReader("")) }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy