HHH-17504 - Ongoing JPA 32 work HHH-17350 - Work on hibernate-models, XSD and JAXB HHH-16114 - Improve boot metamodel binding HHH-15996 - Develop an abstraction for Annotation in annotation processing HHH-16012 - Develop an abstraction for domain model Class refs HHH-15997 - Support for dynamic models in orm.xml HHH-15698 - Support for entity-name in mapping.xsd

This commit is contained in:
Andrea Boriero 2024-03-12 16:42:32 +01:00 committed by Steve Ebersole
parent f26bfa56f0
commit f75012d270
1 changed files with 1 additions and 1 deletions

View File

@ -609,7 +609,7 @@ public abstract class AbstractPropertyHolder implements PropertyHolder {
final List<AnnotationUsage<AssociationOverride>> overrides = buildAssociationOverrides( element, path );
for ( AnnotationUsage<AssociationOverride> override : overrides ) {
final List<AnnotationUsage<JoinColumn>> joinColumns = override.getList( "joinColumns" );
if ( CollectionHelper.isNotEmpty( joinColumns ) ) {
if ( CollectionHelper.isEmpty( joinColumns ) ) {
result.put(
qualify( path, override.getString( "name" ) ),
override.getNestedUsage( "joinTable" )