Skip to content

Commit

Permalink
Post-merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Oct 26, 2016
1 parent 6f859dd commit b76895b
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -630,8 +630,7 @@ private <F extends FocusType> SynchronizationSituation determineSituationWithCor
ObjectDelta syncDelta = change.getObjectDelta();
if (resourceShadow == null && syncDelta != null && ChangeType.ADD.equals(syncDelta.getChangeType())) {
LOGGER.trace("Trying to compute current shadow from change delta add.");
PrismObject<? extends ShadowType> shadow = syncDelta
.computeChangedObject(syncDelta.getObjectToAdd());
PrismObject<ShadowType> shadow = syncDelta.computeChangedObject(syncDelta.getObjectToAdd());
resourceShadow = shadow;
change.setCurrentShadow(shadow);
}
Expand Down

0 comments on commit b76895b

Please sign in to comment.