distinct prover: do not distinguish raw type arguments from type arguments without params (IDEA-119546)

This commit is contained in:
Anna Kozlova
2014-01-21 18:22:40 +04:00
parent 3f6a77a6cb
commit baee0eb2b3
3 changed files with 19 additions and 3 deletions
@@ -0,0 +1,9 @@
public interface I<K> {
}
abstract class SpringHighlightingTestCase<T extends I>{
@SuppressWarnings("unchecked")
protected Class<T> getBuilderClass() {
return (Class<T>)I.class;
}
}