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

com.twelvemonkeys.image.Magick Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
package com.twelvemonkeys.image;

/**
 * Magick
 *
 * @author Harald Kuhr
 * @author last modified by $Author: haku $
 * @version $Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/image/Magick.java#1 $
 */
final class Magick {
    static final boolean DEBUG = useDebug();

    private static boolean useDebug() {
        try {
            return "TRUE".equalsIgnoreCase(System.getProperty("com.twelvemonkeys.image.magick.debug"));
        }
        catch (Throwable t) {
            // Most probably in case of a SecurityManager
            return false;
        }
    }

    private Magick() {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy