Skip to content
Snippets Groups Projects
Commit 94899ab7 authored by TROMEL LOUIS's avatar TROMEL LOUIS
Browse files

Retrait des logs de débug

parent 392a2c8a
No related branches found
No related tags found
No related merge requests found
......@@ -271,7 +271,6 @@ public class FilterView extends Composite implements HasResizeHandlers {
private void drawFilterView() {
clearFilterDisplay();
LOGGER.atWarning().log("drawing from scratch");
drawFilterView(datasourcesSelectionModel);
drawFilterView(countriesSelectionModel);
drawFilterView(regionsSelectionModel);
......@@ -293,7 +292,6 @@ public class FilterView extends Composite implements HasResizeHandlers {
private <T> void drawFilterView(final MultiSelectionModel<T> multiSelectionModel) {
for (final T item : multiSelectionModel.getSelectedSet()) {
LOGGER.atWarning().log("draw view for " + item.toString());
displayed = true;
createItemDisplay(item, multiSelectionModel);
}
......@@ -310,14 +308,12 @@ public class FilterView extends Composite implements HasResizeHandlers {
private <T> void addListItemListener(final Element element, final T item,
final MultiSelectionModel<T> multiSelectionModel) {
DOM.setEventListener(element, event -> {
LOGGER.atWarning().log("removing " + item.toString());
multiSelectionModel.setSelected(item, false);
});
DOM.sinkEvents(element, Event.ONCLICK);
}
private void clearFilterDisplay() {
LOGGER.atWarning().log("should be clear");
clientFactory.getSearchView().resetFilterPanes();
displayed = false;
panelBody.getElement().removeAllChildren();
......@@ -351,7 +347,6 @@ public class FilterView extends Composite implements HasResizeHandlers {
public final void setVisible(final boolean isVisible) {
filterPanel.setVisible(displayed && isVisible);
filterBy.setVisible(displayed && isVisible);
LOGGER.atWarning().log("panel should be displayed: " + (displayed && isVisible));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment