HHH-18072 - Transform hbm.xml not-found

This commit is contained in:
Steve Ebersole 2024-05-06 08:50:34 -05:00
parent 1cce4537ee
commit 9d10547d3d
1 changed files with 1 additions and 1 deletions

View File

@ -1490,7 +1490,7 @@ public class XmlAnnotationHelper {
assert jaxbNode != null;
final NotFoundAction notFoundAction = jaxbNode.getNotFound();
if ( notFoundAction == null || jaxbNode.getNotFound() != NotFoundAction.EXCEPTION ) {
if ( notFoundAction == null || notFoundAction == NotFoundAction.EXCEPTION ) {
return;
}