Skip to content

Commit deaad71

Browse files
authored
Fixed indentation
I don't know why but the indentation was messed up. I mannually fixed it.
1 parent 1372069 commit deaad71

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hibernate-core/src/main/java/org/hibernate/cfg/annotations/TableBinder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -571,10 +571,10 @@ public static void bindFk(
571571
mappedByColumns = property.getValue().getColumnIterator();
572572
}
573573
while ( mappedByColumns.hasNext() ) {
574-
Object o = mappedByColumns.next();
575-
if(o instanceof Formula) {
576-
throw new AnnotationException("Formula is not supported along with this type of relationship");
577-
}
574+
Object o = mappedByColumns.next();
575+
if(o instanceof Formula) {
576+
throw new AnnotationException("Formula is not supported along with this type of relationship");
577+
}
578578
Column column = (Column) o;
579579
columns[0].overrideFromReferencedColumnIfNecessary( column );
580580
columns[0].linkValueUsingAColumnCopy( column, value );

0 commit comments

Comments
 (0)