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 c3677e7 commit 5d7f949Copy full SHA for 5d7f949
inject-generator/src/main/java/io/avaje/inject/generator/Processor.java
@@ -242,7 +242,7 @@ private void readFactory(TypeElement factoryType) {
242
243
private void readBuildMethodDependencyMeta(Element element) {
244
Name simpleName = element.getSimpleName();
245
- if (simpleName.toString().startsWith("build")) {
+ if (simpleName.toString().startsWith("build_")) {
246
// read a build method - DependencyMeta
247
DependencyMeta meta = element.getAnnotation(DependencyMeta.class);
248
if (meta == null) {
0 commit comments