![JAR search and dependency download from the Maven repository](/logo.png)
org.multiverse.utils.SystemOut Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multiverse-core Show documentation
Show all versions of multiverse-core Show documentation
Contains the core interfaces/classes of the Multiverse project. So no STM implementations
package org.multiverse.utils;
/**
* Prevents having unwanted System.outs all over the place. Sonar will pick this one one and of course all the
* unwanted ones.
*
* @author Peter Veentjer
*/
public final class SystemOut {
public static void println(String s, Object... args) {
System.out.printf(s, args);
System.out.println();
}
//we don't want instances.
private SystemOut() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy