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

org.outerj.eclipse.compare.internal.Assert Maven / Gradle / Ivy

Go to download

A Java library to compare text files. Forked from http://DaisyDiff.github.io

The newest version!
package org.outerj.eclipse.compare.internal;

public class Assert {

    public static void isTrue( final boolean cond ) {
        if( ! cond ) {
            throw new IllegalStateException( "Assertion failed." );
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy