Skip to content

Commit

Permalink
Save identified type on cache for future lookups (#4039)
Browse files Browse the repository at this point in the history
Co-authored-by: Tim te Beek <[email protected]>
  • Loading branch information
ammachado and timtebeek authored Feb 24, 2024
1 parent b433583 commit 48c2183
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ private JavaType updateType(@Nullable JavaType oldType) {
} else if (oldType instanceof JavaType.FullyQualified) {
JavaType.FullyQualified original = TypeUtils.asFullyQualified(oldType);
if (isTargetFullyQualifiedType(original)) {
oldNameToChangedType.put(oldType, targetType);
return targetType;
}
} else if (oldType instanceof JavaType.GenericTypeVariable) {
Expand Down

0 comments on commit 48c2183

Please sign in to comment.