Created
June 29, 2019 17:50
-
-
Save jeremyrempel/d46ebb2ea1ed2d75644803603d191ea3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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