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

com.hubspot.singularity.client.ProviderUtils Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package com.hubspot.singularity.client;

import javax.inject.Provider;

class ProviderUtils
{
  public static  Provider of(final T instance) { // XXX: this seems like it should be in a base library somewhere?
    return new Provider() {
      @Override
      public T get()
      {
        return instance;
      }
    };
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy