Skip to content

Commit

Permalink
fluent-builder: use the same checks for with*() methods (mklemm#79)
Browse files Browse the repository at this point in the history
This allows for super() calls to compile using inherited with*() methods.
  • Loading branch information
flaktack committed Sep 12, 2024
1 parent 67ffbe9 commit 9ac499f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ BuilderOutline getReferencedBuilderDeclaration(final PropertyOutline propertyOut
if(referencedDefinedClass != null) {
return this.builderOutlines.get(referencedDefinedClass.fullName());
} else {
return getReferencedBuilderOutline(propertyOutline.getRawType());
return getBuilderDeclaration(propertyOutline.getRawType());
}
}

Expand Down

0 comments on commit 9ac499f

Please sign in to comment.