Created
May 17, 2021 02:51
-
-
Save jeremyrempel/1886c8a8b19c30973861b48a49cc4697 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