Skip to content

Commit

Permalink
Removed debug if statement
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
  • Loading branch information
tonydamage committed May 27, 2021
1 parent f7d435d commit 98286f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Expand Up @@ -860,10 +860,6 @@ private UserInterfaceElementVisibilityType reduceItems(PrismContainerDefinition<
return containerVisibility;
}

if (containerDefinition.getItemName().getLocalPart().equals("extension")) {
containerDefinition.getItemName();
}

Collection<ItemName> itemsToDelete;
if (containerVisibility == HIDDEN) {
// Delete everything
Expand Down
Expand Up @@ -67,7 +67,7 @@ public IdGeneratorResult generate(Containerable containerable) {
}

// used both for PrismObjects nad PrismContainerValues
private List<PrismContainer<?>> listAllPrismContainers(Visitable<?> object) {
private List<PrismContainer<?>> listAllPrismContainers(Visitable object) {
List<PrismContainer<?>> values = new ArrayList<>();

object.accept(visitable -> {
Expand Down

0 comments on commit 98286f1

Please sign in to comment.