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.
2 parents 5b81f50 + 38947ad commit d2cc27dCopy full SHA for d2cc27d
inject/src/main/java/io/avaje/inject/spi/Plugin.java
@@ -14,7 +14,9 @@ public interface Plugin {
14
/**
15
* Return the classes that the plugin provides.
16
*/
17
- Class<?>[] provides();
+ default Class<?>[] provides() {
18
+ return new Class<?>[]{};
19
+ }
20
21
22
* Apply the plugin to the scope builder.
0 commit comments