Remove leftovers

See gh-31690
This commit is contained in:
Stéphane Nicoll 2023-12-07 10:59:01 +01:00
parent 302cdeeee6
commit e36d035f58
1 changed files with 0 additions and 20 deletions

View File

@ -377,26 +377,6 @@ class GenericTypeResolverTests {
interface IdFixingRepository<T> extends Repository<T, Long> {
}
interface First<N extends Number> {
default void foo(N f) {
// ...
}
}
interface Second<T> {
default void bar(T b) {
// ...
}
}
static class FirstSecondService implements First<Integer>, Second<String> {
}
static class SecondFirstService implements Second<String>, First<Integer> {
}
static class WithMethodParameter {
public void nestedGenerics(List<Map<String, Integer>> input) {
}