mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 22:11:40 +07:00
IDEA-364245 Column cannot be resolved if using @field:[Column(name = "...")] in JPA
(cherry picked from commit cd2f0b1f53f4a881a572012543052056ef0f914d) IJ-CR-151650 GitOrigin-RevId: ebd107f2dc2406a11d2956b95fe0f167f4b772c5
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ea119b9264
commit
345944c3ff
@@ -66,7 +66,8 @@ internal fun convertParentImpl(
|
||||
?: parent
|
||||
|
||||
AnnotationUseSiteTarget.FIELD ->
|
||||
parent = (parentUnwrapped as? KtProperty)
|
||||
parent = (parentUnwrapped as? KtAnnotation)?.parent
|
||||
?: (parentUnwrapped as? KtProperty)
|
||||
?: (parentUnwrapped as? KtParameter)
|
||||
?.takeIf { it.isPropertyParameter() }
|
||||
?.let(LightClassUtil::getLightClassBackingField)
|
||||
|
||||
Reference in New Issue
Block a user