Tassilo Horn | a8cbc89 | 2021-08-11 19:51:04 +0200 | [diff] [blame] | 1 | class MyExample { |
2 | public <T extends Bar & Foo<T>, R> Map<T, R[]> foo(String[] RIGHT) { | ||||
3 | someMethodCall(); | ||||
4 | someOtherMethod() | ||||
5 | .doThat(); | ||||
6 | // Whatever... | ||||
7 | return (List<T>) Arrays.asList("ChangeMe"); | ||||
8 | } | ||||
9 | } |