Michael Blyakher created BVAL-128:
-------------------------------------
Summary: Validation of bean that implements Closeable results in
an NPE
Key: BVAL-128
URL: https://issues.apache.org/jira/browse/BVAL-128
Project: BVal
Issue Type: Bug
Components: jsr303
Affects Versions: 1.1.0-alpha
Reporter: Michael Blyakher
Validating a bean that implements Closeable results in an NPE. The code to
reproduce this is below.
public static void main( String[] args )
{
ValidatorFactory factory =
Validation.buildDefaultValidatorFactory();
Validator validator = factory.getValidator();
validator.validate(new CloneableBean());
}
private static class CloneableBean implements Cloneable {}
--
This message was sent by Atlassian JIRA
(v6.2#6252)