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:
parent
70f906045a
commit
38a41e0044
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue