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() {
439439 * @return ColumnInfos representing the effective id of this entity. Guaranteed not to be {@literal null}.
440440 */
441441 public ColumnInfos effectiveIdColumnInfos () {
442- return backReferenceColumnInfos .columnInfos . isEmpty () ? idColumnInfos : backReferenceColumnInfos ;
442+ return backReferenceColumnInfos .isEmpty () ? idColumnInfos : backReferenceColumnInfos ;
443443 }
444444 }
445445
@@ -524,7 +524,7 @@ public static ColumnInfos empty(AggregatePath basePath) {
524524 */
525525 public ColumnInfo unique () {
526526
527- Collection <ColumnInfo > values = columnInfos .values ();
527+ Collection <ColumnInfo > values = longColumnInfos .values ();
528528 Assert .state (values .size () == 1 , "ColumnInfo is not unique" );
529529 return values .iterator ().next ();
530530 }
@@ -537,7 +537,7 @@ public ColumnInfo unique() {
537537 */
538538 public ColumnInfo any () {
539539
540- Collection <ColumnInfo > values = columnInfos .values ();
540+ Collection <ColumnInfo > values = longColumnInfos .values ();
541541 return values .iterator ().next ();
542542 }
543543
You can’t perform that action at this time.
0 commit comments