File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -148,15 +148,15 @@ private <T> Identifier getParentKeys(DbAction.WithDependingOn<?> action) {
148
148
149
149
RelationalPersistentEntity <?> persistentEntity = context .getRequiredPersistentEntity (dependingOn .getEntityType ());
150
150
151
- Object identifier = getIdFromEntityDependingOn (dependingOn , persistentEntity );
152
- Identifier parentKeys = BasicJdbcConverter //
153
- .forBackReferences (action .getPropertyPath (), identifier );
151
+ Object id = getIdFromEntityDependingOn (dependingOn , persistentEntity );
152
+ Identifier identifier = BasicJdbcConverter //
153
+ .forBackReferences (action .getPropertyPath (), id );
154
154
155
155
for (Map .Entry <PersistentPropertyPath <RelationalPersistentProperty >, Object > qualifier : action .getQualifiers ().entrySet ()) {
156
- parentKeys = parentKeys .withQualifier (qualifier .getKey (), qualifier .getValue ());
156
+ identifier = identifier .withQualifier (qualifier .getKey (), qualifier .getValue ());
157
157
}
158
158
159
- return parentKeys ;
159
+ return identifier ;
160
160
}
161
161
162
162
@ Nullable
You can’t perform that action at this time.
0 commit comments