
com.google.caliper.runner.CaliperRunnerModule_ProvideInstantFactory 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;
import dagger.internal.Factory;
import dagger.internal.Preconditions;
import org.joda.time.Instant;
public final class CaliperRunnerModule_ProvideInstantFactory implements Factory {
private static final CaliperRunnerModule_ProvideInstantFactory INSTANCE =
new CaliperRunnerModule_ProvideInstantFactory();
@Override
public Instant get() {
return provideInstant();
}
public static CaliperRunnerModule_ProvideInstantFactory create() {
return INSTANCE;
}
public static Instant provideInstant() {
return Preconditions.checkNotNull(
CaliperRunnerModule.provideInstant(),
"Cannot return null from a non-@Nullable @Provides method");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy