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 3961d59 commit 386cc4cCopy full SHA for 386cc4c
inject-generator/src/main/java/io/avaje/inject/generator/ExternalProvider.java
@@ -26,7 +26,7 @@ void init() {
26
providedTypes.add(provide.getCanonicalName());
27
}
28
for (final Class<?> provide : module.autoProvidesAspects()) {
29
- providedTypes.add(Constants.ASPECT_PROVIDER + "<" + provide.getCanonicalName() + ">");
+ providedTypes.add(Util.wrapAspect(provide.getCanonicalName()));
30
31
} catch (ServiceConfigurationError expected) {
32
// ignore expected error reading the module that we are also writing
0 commit comments