We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2305f11 commit d826135Copy full SHA for d826135
1 file changed
src/main/java/net/thenextlvl/binder/StaticBinder.java
@@ -52,6 +52,7 @@ static StaticBinder getInstance(ClassLoader loader) {
52
* @param <T> the type of the class
53
* @return an optional containing the instance if found, empty otherwise
54
* @throws SecurityException if the binder access is not allowed
55
+ * @see #find(Class)
56
*/
57
@CheckReturnValue
58
@Contract(mutates = "this")
@@ -65,6 +66,7 @@ static StaticBinder getInstance(ClassLoader loader) {
65
66
* @return the instance if found, throws an exception otherwise
67
* @throws IllegalStateException if no instance is found
68
69
+ * @see #get(Class)
70
71
<T> T find(Class<T> clazz) throws IllegalStateException, SecurityException;
72
}
0 commit comments