}
private void checkIcon(IntegrationEntity entity, EntityNodeUi node) {
if (entity instanceof Locatable && LocationDecorateTreeNodeIconsPreference.value()) {
Locatable locatable = (Locatable) entity;
LocationDecoratedIcons locationIcons = LocationDecoratedIcons.forLocatable(locatable);
Icon icon = locationIcons.getIcon(locatable, Size.SMALL);
node.setIcon(icon);
}
}