Fix NPE in SourceNavigationHelper.findFirstMatchingInIndex (EA-91517)
This commit is contained in:
+1
-2
@@ -166,8 +166,7 @@ object SourceNavigationHelper {
|
|||||||
navigationKind: NavigationKind,
|
navigationKind: NavigationKind,
|
||||||
index: StringStubIndexExtension<T>
|
index: StringStubIndexExtension<T>
|
||||||
): T? {
|
): T? {
|
||||||
val classFqName = entity.fqName!!
|
val classFqName = entity.fqName ?: return null
|
||||||
|
|
||||||
val scope = targetScope(entity, navigationKind) ?: return null
|
val scope = targetScope(entity, navigationKind) ?: return null
|
||||||
return index.get(classFqName.asString(), entity.project, scope).firstOrNull()
|
return index.get(classFqName.asString(), entity.project, scope).firstOrNull()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user