HHH-16261 - Fixed formatting

This commit is contained in:
Cedomir Igaly 2023-04-02 12:34:16 +02:00 committed by Christian Beikov
parent 17fb2b9436
commit bece9e90bf
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ public class JPAMetaModelEntityProcessor extends AbstractProcessor {
private @Nullable MetaEntity tryGettingExistingEntityFromContext(AnnotationMirror mirror, String fqn) {
MetaEntity alreadyExistingMetaEntity = null;
if ( TypeUtils.isAnnotationMirrorOfType( mirror, Constants.ENTITY )
|| TypeUtils.isAnnotationMirrorOfType( mirror, Constants.MAPPED_SUPERCLASS )) {
|| TypeUtils.isAnnotationMirrorOfType( mirror, Constants.MAPPED_SUPERCLASS ) ) {
alreadyExistingMetaEntity = context.getMetaEntity( fqn );
}
else if ( TypeUtils.isAnnotationMirrorOfType( mirror, Constants.EMBEDDABLE ) ) {