[lc] KotlinAsJavaSupportBase: make ifValid inline

^KT-50241
This commit is contained in:
Dmitry Gridin
2022-09-08 12:35:15 +02:00
committed by Space
parent aa31ca67e2
commit 2611be0436
@@ -199,7 +199,7 @@ abstract class KotlinAsJavaSupportBase<TModule>(protected val project: Project)
}
}
private fun <T : PsiElement, V> ifValid(element: T, action: () -> V?): V? {
private inline fun <T : PsiElement, V> ifValid(element: T, action: () -> V?): V? {
if (!element.isValid) return null
return action()
}