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

org.multiverse.utils.SystemOut Maven / Gradle / Ivy

Go to download

Contains the core interfaces/classes of the Multiverse project. So no STM implementations

There is a newer version: 0.7.0
Show newest version
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