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

io.infinicast.Debug Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package io.infinicast;

public class Debug {
    public static void Assert(boolean what, String messageIfNotTrue) {
        assert what : messageIfNotTrue;
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy