Skip to content

Commit

Permalink
fix: prevent StackOverflowError in QuarkusConfigMappingProvider.popul…
Browse files Browse the repository at this point in the history
…ateConfigObject

Signed-off-by: Fred Bricon <[email protected]>
  • Loading branch information
fbricon committed Aug 15, 2023
1 parent 683e2e7 commit d172952
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ private void populateConfigObject(PsiClass configMappingType, String prefixStr,
PsiQuarkusUtils.updateConverterKinds(metadata, method, enclosedType);
} else {
// Other type (App, etc)
populateConfigObject(returnType, propertyName, extensionName, new HashSet<>(),
populateConfigObject(returnType, propertyName, extensionName, typesAlreadyProcessed,
configMappingAnnotation, collector);
}
}
Expand Down

0 comments on commit d172952

Please sign in to comment.