blob: 96e9e5f2c14e35ad9ca32ce2495debd2a875ebe3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
class MyExample {
public List<? extends Comparable> foo(String[] RIGHT) {
someMethodCall();
someOtherMethod()
.doThat();
// Whatever...
return Arrays.asList("ChangeMe");
}
}
|