Browse Source
Update `ResolvableType` so that variable referenced can be resolved against wildcard types. Prior to this commit, given a type: Map<String, ? extends List<? extends CharSequence>> Calling `type.getGeneric(1).asCollection().resolveGeneric()` would return `null`. This was because the `List` variable `E` referenced a wildcard type which `resolveVariable` did not support. Closes gh-24145pull/24155/head
Phillip Webb
5 years ago
committed by
Juergen Hoeller
2 changed files with 15 additions and 0 deletions
Loading…
Reference in new issue