Skip to content

Commit

Permalink
Do not stop the reflective hierarchy walk too soon
Browse files Browse the repository at this point in the history
  • Loading branch information
aloubyansky committed Jul 7, 2021
1 parent b6e0754 commit 093a4a7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ private void addReflectiveHierarchy(CombinedIndexBuildItem combinedIndexBuildIte
type instanceof UnresolvedTypeVariable) {
return;
} else if (type instanceof ClassType) {
if (reflectiveHierarchyBuildItem.getIgnoreTypePredicate().test(type.name())
|| processedReflectiveHierarchies.contains(type.name())) {
if (reflectiveHierarchyBuildItem.getIgnoreTypePredicate().test(type.name())) {
return;
}

Expand Down

0 comments on commit 093a4a7

Please sign in to comment.