Use correct elementType in KotlinBackingFieldStubImpl constructor
This commit is contained in:
committed by
teamcityserver
parent
a816bd9a33
commit
57608d7eeb
+2
-2
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user