blob: 56a140091dbe04d9b8e2a2d778b3715815079a02 [file] [log] [blame]
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;
}
}