extractionModel: fix NPE
#EA-210243 Fixed
This commit is contained in:
+1
-1
@@ -57,7 +57,7 @@ class IntroduceTypeAliasData(
|
||||
return
|
||||
typeReference.resolveInfo = TypeReferenceInfo(typeReference, kotlinType)
|
||||
|
||||
typeElement.typeArgumentsAsTypes.forEach { it.accept(this) }
|
||||
typeElement.typeArgumentsAsTypes.forEach { it?.accept(this) }
|
||||
}
|
||||
}
|
||||
(originalTypeElement.parent as? KtTypeReference ?: originalTypeElement).accept(visitor)
|
||||
|
||||
Reference in New Issue
Block a user