Skip to content

Commit

Permalink
npe fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jun 25, 2020
1 parent 5578809 commit 023def3
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -81,6 +81,9 @@ public PrismContainerValueWrapper<C> createValueWrapper(PrismContainerWrapper<C>
}

protected List<? extends ItemDefinition> getItemDefinitions(PrismContainerWrapper<C> parent, PrismContainerValue<C> value) {
if (parent == null){
return new ArrayList<>();
}
return parent.getDefinitions();
}

Expand Down

0 comments on commit 023def3

Please sign in to comment.