Remove unneeded asserts from JavaSupertypeResolver

Don't do anything special if a Java class happens to extend jet.JetObject: it's
not a Kotlin class and we should collect all its supertypes correctly
This commit is contained in:
Alexander Udalov
2013-09-27 14:24:05 +04:00
committed by Alexander Udalov
parent b2bcbdfb7a
commit 07f1e61146
4 changed files with 14 additions and 12 deletions

View File

@@ -0,0 +1,4 @@
package test;
public class ClassExtendsTypeParameter<T> extends T {
}

View File

@@ -0,0 +1,5 @@
package test
public open class ClassExtendsTypeParameter</*0*/ T> : T {
public constructor ClassExtendsTypeParameter</*0*/ T>()
}