HHH-12997 Fixed indentation

I don't know why but the indentation was messed up. I mannually fixed it.
This commit is contained in:
Clopma 2020-04-23 08:10:58 +02:00 committed by Carlos López
parent 1372069754
commit 39f3fcc71a
1 changed files with 4 additions and 4 deletions

View File

@ -571,10 +571,10 @@ public class TableBinder {
mappedByColumns = property.getValue().getColumnIterator();
}
while ( mappedByColumns.hasNext() ) {
Object o = mappedByColumns.next();
if(o instanceof Formula) {
throw new AnnotationException("Formula is not supported along with this type of relationship");
}
Object o = mappedByColumns.next();
if(o instanceof Formula) {
throw new AnnotationException("Formula is not supported along with this type of relationship");
}
Column column = (Column) o;
columns[0].overrideFromReferencedColumnIfNecessary( column );
columns[0].linkValueUsingAColumnCopy( column, value );