Skip to content

Commit

Permalink
Fix CME in PCV.keepPaths/removePaths methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Jun 14, 2019
1 parent 63694ec commit 5720cce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -315,7 +315,7 @@ private C asContainerableInternal(Class<C> clazz) {

@NotNull
public Collection<QName> getItemNames() {
return items.keySet();
return new ArrayList<>(items.keySet());
}

public <IV extends PrismValue,ID extends ItemDefinition> void add(Item<IV,ID> item) throws SchemaException {
Expand Down

0 comments on commit 5720cce

Please sign in to comment.