Add javadoc note on recursive resolution as of 6.2

See gh-30079
This commit is contained in:
Juergen Hoeller
2024-02-15 16:50:53 +01:00
parent e788aeb25b
commit d4e8daaede
2 changed files with 2 additions and 3 deletions

View File

@@ -393,11 +393,9 @@ class GenericTypeResolverTests {
public interface ListOfListSupplier<T> {
List<List<T>> get();
}
public interface StringListOfListSupplier extends ListOfListSupplier<String> {
}
}