HHH-14248 Other minor improvements to ActionQueue
This commit is contained in:
parent
79ccd9f225
commit
06715dd9b6
|
@ -1155,8 +1155,6 @@ public class ActionQueue {
|
||||||
.getRootEntityName()
|
.getRootEntityName()
|
||||||
);
|
);
|
||||||
|
|
||||||
// the entity associated with the current action.
|
|
||||||
Object currentEntity = action.getInstance();
|
|
||||||
int index = latestBatches.indexOf( batchIdentifier );
|
int index = latestBatches.indexOf( batchIdentifier );
|
||||||
|
|
||||||
if ( index != -1 ) {
|
if ( index != -1 ) {
|
||||||
|
@ -1266,8 +1264,8 @@ public class ActionQueue {
|
||||||
|
|
||||||
for ( int i = 0; i < propertyValues.length; i++ ) {
|
for ( int i = 0; i < propertyValues.length; i++ ) {
|
||||||
Object value = propertyValues[i];
|
Object value = propertyValues[i];
|
||||||
Type type = propertyTypes[i];
|
|
||||||
if ( value != null ) {
|
if ( value != null ) {
|
||||||
|
Type type = propertyTypes[i];
|
||||||
addParentChildEntityNameByPropertyAndValue( action, batchIdentifier, type, value );
|
addParentChildEntityNameByPropertyAndValue( action, batchIdentifier, type, value );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue