
com.google.caliper.runner.instrument.InstrumentModule_ProvideArbitraryMeasurementInstrumentFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of caliper-runner Show documentation
Show all versions of caliper-runner Show documentation
Caliper's command line benchmark runner tool.
The newest version!
// Generated by Dagger (https://google.github.io/dagger).
package com.google.caliper.runner.instrument;
import dagger.internal.Factory;
import dagger.internal.Preconditions;
public final class InstrumentModule_ProvideArbitraryMeasurementInstrumentFactory
implements Factory {
private static final InstrumentModule_ProvideArbitraryMeasurementInstrumentFactory INSTANCE =
new InstrumentModule_ProvideArbitraryMeasurementInstrumentFactory();
@Override
public Instrument get() {
return provideArbitraryMeasurementInstrument();
}
public static InstrumentModule_ProvideArbitraryMeasurementInstrumentFactory create() {
return INSTANCE;
}
public static Instrument provideArbitraryMeasurementInstrument() {
return Preconditions.checkNotNull(
InstrumentModule.provideArbitraryMeasurementInstrument(),
"Cannot return null from a non-@Nullable @Provides method");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy