HHH-14248 Other minor improvements to ActionQueue

This commit is contained in:
Nathan Xu 2020-10-05 22:04:30 -04:00 committed by Sanne Grinovero
parent c3e43ecd11
commit 3a88b1c6b2
1 changed files with 1 additions and 3 deletions

View File

@ -1155,8 +1155,6 @@ public class ActionQueue {
.getRootEntityName()
);
// the entity associated with the current action.
Object currentEntity = action.getInstance();
int index = latestBatches.indexOf( batchIdentifier );
if ( index != -1 ) {
@ -1266,8 +1264,8 @@ public class ActionQueue {
for ( int i = 0; i < propertyValues.length; i++ ) {
Object value = propertyValues[i];
Type type = propertyTypes[i];
if ( value != null ) {
Type type = propertyTypes[i];
addParentChildEntityNameByPropertyAndValue( action, batchIdentifier, type, value );
}
}