narrow return type of ClassDescriptor.getConstructors

ClassDescriptor.getConstructors should return
Set<ConstructorDesctiptor> instead of Set<FunctionDescriptor>
This commit is contained in:
Stepan Koltsov
2011-11-12 18:53:50 +04:00
parent 30926012c7
commit 7975a8e0c3
13 changed files with 41 additions and 28 deletions
@@ -675,7 +675,7 @@ public class JetTypeCheckerTest extends JetLiteFixture {
});
}
Set<FunctionDescriptor> constructors = Sets.newLinkedHashSet();
Set<ConstructorDescriptor> constructors = Sets.newLinkedHashSet();
classDescriptor.initialize(
!open,
typeParameters,