simplify ? extends Object (IDEA-91631; IDEA-91144)

This commit is contained in:
anna
2012-09-18 12:46:54 +02:00
parent 5f51e64449
commit 21a0d8565e
7 changed files with 76 additions and 0 deletions
@@ -0,0 +1,10 @@
interface Generic<T> {
SomeGeneric<? extends T> foo();
}
class II implements Generic<Object> {
<caret>
}
class SomeGeneric<P> {
}