software.reinvent.commons.config.CachedConfigProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Common dependencies and utils for projects.
The newest version!
package software.reinvent.commons.config;
import com.google.inject.Provider;
/**
* Created on 11.01.2017.
*
* @author Leonard Daume
*/
public class CachedConfigProvider implements Provider {
@Override
public CachedConfig get() {
return ConfigLoader.loadCached();
}
}