Skip to content

Instantly share code, notes, and snippets.

@jeremyrempel
Created June 29, 2019 17:50
Show Gist options
  • Save jeremyrempel/d46ebb2ea1ed2d75644803603d191ea3 to your computer and use it in GitHub Desktop.
Save jeremyrempel/d46ebb2ea1ed2d75644803603d191ea3 to your computer and use it in GitHub Desktop.
package javax.inject;
public interface Provider<T> {
T get();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment