fix a bug in detecting when a repo method param is multivalued

Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
Gavin King 2024-03-31 18:55:42 +02:00
parent 70f906045a
commit 38a41e0044
1 changed files with 1 additions and 1 deletions

View File

@ -1918,7 +1918,7 @@ public class AnnotationMetaEntity extends AnnotationMeta {
// INTENTIONAL FALL-THROUGH
case DECLARED:
if ( types.isSameType( parameterType, attributeType) ) {
return true;
return false;
}
else {
final TypeElement list = context.getTypeElementForFullyQualifiedName(LIST);