File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
hibernate-core/src/main/java/org/hibernate/cfg/annotations Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments