-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
| Column[] columnAnnotations = f.getAnnotationsByType(Column.class); |
Please change above lines to this:
Column[] columnAnnotations = f.getAnnotationsByType(Column.class);
if (columnAnnotations.length != 0) {
Column col = columnAnnotations[0];
return col.nullable();
}
JoinColumn[] joinColumnAnnotations = f.getAnnotationsByType(JoinColumn.class);
if (joinColumnAnnotations.length != 0) {
JoinColumn joinCol = joinColumnAnnotations[0];
return joinCol.nullable();
}
return true;Metadata
Metadata
Assignees
Labels
No labels