type distinct prover asymmetry fixed (IDEA-118533)

This commit is contained in:
Anna Kozlova
2014-05-31 20:36:02 +04:00
parent 6b5c924a4e
commit fdcb20b740
3 changed files with 18 additions and 3 deletions
@@ -0,0 +1,11 @@
abstract class Test {
interface InputFormat<K, V> {
}
@SuppressWarnings("unchecked")
private static Class<? extends InputFormat<?, ?>> getInputFormatClass(final Class<? extends InputFormat> aClass)
throws ClassNotFoundException {
return (Class<? extends InputFormat<?, ?>>) aClass;
}
}