Laird Nelson commented on Bug HV-601

Seeing similar behavior in 4.3.1.Final.

Interface:

@NotNull
public Set<Stuff> getStuff();

@NotNull
public Set<Stuff> getStuff(final Date date);

Implementation:

@Override
public Set<Stuff> getStuff() {
  return stuff;
}

@Override
public Set<Stuff> getStuff(final Date date) {
  return stuff;
}

When my JTA transaction commits and JPA validation kicks in, I get the "wrong number of arguments" exception from ReflectionHelper#getValue() line 327.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira