blob: 96e9e5f2c14e35ad9ca32ce2495debd2a875ebe3 [file] [log] [blame]
class MyExample {
public List<? extends Comparable> foo(String[] RIGHT) {
someMethodCall();
someOtherMethod()
.doThat();
// Whatever...
return Arrays.asList("ChangeMe");
}
}