repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge https://github.com/j6t/git-gui
[git.git]
/
t
/
t4018
/
java-method-return-generic-wildcard
blob
96e9e5f2c14e35ad9ca32ce2495debd2a875ebe3
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
}