Skip to content

Commit

Permalink
Prevent StackOverflow by passing types processed in recursive call.
Browse files Browse the repository at this point in the history
Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Aug 22, 2023
1 parent 2bbcefc commit 2be29a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private void populateConfigObject(IType configMappingType, String prefixStr, Str
JDTQuarkusUtils.updateConverterKinds(metadata, method, enclosedType);
} else {
// Other type (App, etc)
populateConfigObject(returnType, propertyName, extensionName, new HashSet<>(),
populateConfigObject(returnType, propertyName, extensionName, typesAlreadyProcessed,
configMappingAnnotation, collector, monitor);
}
}
Expand Down

0 comments on commit 2be29a3

Please sign in to comment.