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