
name.remal.org.jdom2.output.Format.kt Maven / Gradle / Ivy
package name.remal
import org.jdom2.output.Format
import java.nio.charset.Charset
import java.nio.charset.StandardCharsets.UTF_8
import java.nio.charset.UnsupportedCharsetException
val Format.charset: Charset
get() {
try {
encoding?.also {
return Charset.forName(it)
}
} catch (e: UnsupportedCharsetException) {
// do nothing
}
return UTF_8
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy