Skip to content

Commit

Permalink
Make PCVI.simpleAdd overridable
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Apr 22, 2024
1 parent bc1fc68 commit 490113c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ public <IV extends PrismValue, ID extends ItemDefinition<?>> void add(Item<IV, I
simpleAdd(item);
}

private <IV extends PrismValue, ID extends ItemDefinition<?>> void simpleAdd(Item<IV, ID> item) {
protected <IV extends PrismValue, ID extends ItemDefinition<?>> void simpleAdd(Item<IV, ID> item) {
@NotNull ItemName itemName = item.getElementName();
items.put(itemName, item);
if (QNameUtil.isUnqualified(itemName)) {
Expand Down

0 comments on commit 490113c

Please sign in to comment.