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

com.google.caliper.runner.CaliperRunnerModule_ProvideInstantFactory Maven / Gradle / Ivy

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