org.oewntk.xml.in.Tracing.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fromxml Show documentation
Show all versions of fromxml Show documentation
Parse WordNet XML file into model.
The newest version!
/*
* Copyright (c) 2021-2024. Bernard Bou.
*/
package org.oewntk.xml.`in`
import java.io.OutputStream
import java.io.PrintStream
object Tracing {
val psInfo: PrintStream = System.out
val psErr: PrintStream = System.err
val psNull: PrintStream = PrintStream(object : OutputStream(
) {
override fun write(i: Int) {
// do nothing
}
})
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy