File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-data-relational/src/main/java/org/springframework/data/relational/core/mapping Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ public ColumnInfo reverseColumnInfo() {
439
439
* @return ColumnInfos representing the effective id of this entity. Guaranteed not to be {@literal null}.
440
440
*/
441
441
public ColumnInfos effectiveIdColumnInfos () {
442
- return backReferenceColumnInfos .columnInfos . isEmpty () ? idColumnInfos : backReferenceColumnInfos ;
442
+ return backReferenceColumnInfos .isEmpty () ? idColumnInfos : backReferenceColumnInfos ;
443
443
}
444
444
}
445
445
@@ -524,7 +524,7 @@ public static ColumnInfos empty(AggregatePath basePath) {
524
524
*/
525
525
public ColumnInfo unique () {
526
526
527
- Collection <ColumnInfo > values = columnInfos .values ();
527
+ Collection <ColumnInfo > values = longColumnInfos .values ();
528
528
Assert .state (values .size () == 1 , "ColumnInfo is not unique" );
529
529
return values .iterator ().next ();
530
530
}
@@ -537,7 +537,7 @@ public ColumnInfo unique() {
537
537
*/
538
538
public ColumnInfo any () {
539
539
540
- Collection <ColumnInfo > values = columnInfos .values ();
540
+ Collection <ColumnInfo > values = longColumnInfos .values ();
541
541
return values .iterator ().next ();
542
542
}
543
543
You can’t perform that action at this time.
0 commit comments