Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Nov 14, 2017
1 parent b3d306c commit 76b4668
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Expand Up @@ -49,7 +49,7 @@ protected void initContainersPanel(Form form, PageAdminObjectDetails<F> pageBase
setRemoveContainerButtonVisibility(policyRules);
setAddContainerButtonVisibility(policyRules);

PrismContainerPanel<PolicyRuleType> constraintsContainerPanel = new PrismContainerPanel(ID_CONTAINERS, policyRuleModel,
PrismContainerPanel<PolicyRuleType> constraintsContainerPanel = new PrismContainerPanel(ID_SPECIFIC_CONTAINERS, policyRuleModel,
false, form, null, pageBase);
constraintsContainerPanel.setOutputMarkupId(true);
add(constraintsContainerPanel);
Expand Down
Expand Up @@ -50,10 +50,8 @@ public class PrismPanel<C extends Containerable> extends Panel {

private static final String STRIPED_CLASS = "striped";

private static final String ID_HEADER = "header";
private static final String ID_CONTAINERS = "containers";
private static final String ID_CONTAINER = "container";
private static final String ID_CONTAINER_METADATA = "containerMetadata";

private static final Trace LOGGER = TraceManager.getTrace(PrismPanel.class);

Expand Down Expand Up @@ -87,8 +85,6 @@ private void addOrReplaceContainers(final Form form, ItemVisibilityHandler isPan
@Override
protected void populateItem(ListItem<ContainerWrapper<C>> item) {
createContainerPanel(item, isPanelVisible, form);

// createMetadataPanel(model, item, containerPanel);
}
};
containers.setReuseItems(true);
Expand Down

0 comments on commit 76b4668

Please sign in to comment.