Use correct elementType in KotlinBackingFieldStubImpl constructor

This commit is contained in:
Roman Golyshev
2021-09-13 18:57:42 +03:00
committed by teamcityserver
parent a816bd9a33
commit 57608d7eeb
@@ -23,7 +23,7 @@ import org.jetbrains.kotlin.psi.stubs.elements.KtStubElementTypes;
public class KotlinBackingFieldStubImpl extends KotlinStubBaseImpl<KtBackingField>
implements KotlinBackingFieldStub {
public KotlinBackingFieldStubImpl(StubElement parent) {
super(parent, KtStubElementTypes.PROPERTY_ACCESSOR);
public KotlinBackingFieldStubImpl(StubElement<?> parent) {
super(parent, KtStubElementTypes.BACKING_FIELD);
}
}