Skip to content

Commit

Permalink
Merge pull request #18496 from aloubyansky/reflective-hierarchy-step-2
Browse files Browse the repository at this point in the history
Do not stop the reflective hierarchy walk too soon
  • Loading branch information
aloubyansky authored Jul 8, 2021
2 parents 68be150 + 093a4a7 commit 47c80fc
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 47c80fc

Please sign in to comment.