Skip to content

Commit

Permalink
MID-8932: fix NPE for mapping description
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Aug 4, 2023
1 parent 5cb0469 commit 55948ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5577,7 +5577,7 @@ public static IModel<String> createMappingDescription(IModel<PrismContainerValue

String target = "";
VariableBindingDefinitionType targetv = mappingType.getTarget();
if (targetv != null) {
if (targetv != null && targetv.getPath() != null) {
target += targetv.getPath().toString();
}

Expand Down

0 comments on commit 55948ea

Please sign in to comment.