Skip to content

Commit

Permalink
Merge branch 'support-4.0' of https://github.com/Evolveum/midpoint in…
Browse files Browse the repository at this point in the history
…to support-4.0
  • Loading branch information
KaterynaHonchar committed Nov 8, 2019
2 parents 12d4dba + ba54ce0 commit 825d72e
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -273,7 +273,9 @@ private <O extends ObjectType> void applySchemasAndSecurityFocus(LensContext<O>
private <O extends ObjectType> void applySchemasAndSecurityProjections(LensContext<O> context,
AuthorizationPhaseType phase, Task task, OperationResult result) throws SecurityViolationException, SchemaException, ConfigurationException, ObjectNotFoundException, ExpressionEvaluationException, CommunicationException {
for (LensProjectionContext projCtx : context.getProjectionContexts()) {
applySchemasAndSecurityElementContext(context, projCtx, phase, task, result);
if (projCtx != null && projCtx.getObjectAny() != null) {
applySchemasAndSecurityElementContext(context, projCtx, phase, task, result);
}
}
}

Expand Down

0 comments on commit 825d72e

Please sign in to comment.