In {{MixDirectAnnotationAndListContainerAnnotation}}, an error was previously reported on an incorrect line.
This is fixed in latest JDK 9, thus the error is now reported on different lines in JDK 8 and 9.
We can work around it by using: {code} @Length.List( { @Length(min = 45) } ) {code} instead of: { { code} @Length.List(@Length(min = 45)) {code } }
It makes the error reported on the correct line for JDK 8 too. |
|