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

io.quarkus.changeagent.ClassChangeAgent Maven / Gradle / Ivy

package io.quarkus.changeagent;

import java.lang.instrument.Instrumentation;

public class ClassChangeAgent {

    private static volatile Instrumentation instrumentation;

    public static Instrumentation getInstrumentation() {
        return instrumentation;
    }

    public static void premain(java.lang.String s, Instrumentation i) {
        instrumentation = i;

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy