All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oewntk.model.Tracing.kt Maven / Gradle / Ivy

/*
 * Copyright (c) 2021-2024. Bernard Bou.
 */
package org.oewntk.model

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 - 2024 Weber Informatics LLC | Privacy Policy