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

io.earcam.instrumental.agent.FakeAgent Maven / Gradle / Ivy

The newest version!
/*-
 * #%L
 * io.earcam.instrumental.agent
 * %%
 * Copyright (C) 2018 earcam
 * %%
 * SPDX-License-Identifier: (BSD-3-Clause OR EPL-1.0 OR Apache-2.0 OR MIT)
 * 
 * You must choose to accept, in full - any individual or combination of 
 * the following licenses:
 * 
 * #L%
 */
package io.earcam.instrumental.agent;

import java.lang.instrument.Instrumentation;

/**
 * 

* FakeAgent class. *

*/ @SuppressWarnings("squid:S1118") public final class FakeAgent { /** *

* agentmain. *

* * @param agentArgs a {@link java.lang.String} object. * @param instrumentation a {@link java.lang.instrument.Instrumentation} object. */ @SuppressWarnings("unused") public static void agentmain(String agentArgs, Instrumentation instrumentation) { InstrumentationServiceProvider.instance = instrumentation; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy