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

io.quarkiverse.freemarker.runtime.graal.Log4jOverSLF4JTesterSubstitute Maven / Gradle / Ivy

package io.quarkiverse.freemarker.runtime.graal;

import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;

import freemarker.log._Log4jOverSLF4JTester;

/**
 * avoid a class not found on org.apache.log4j.MDC
 */
@TargetClass(_Log4jOverSLF4JTester.class)
final class Log4jOverSLF4JTesterSubstitute {

    @Substitute
    public static final boolean test() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy