Skip to content

Commit

Permalink
Merge branches 'master' and 'master' of github.com:Evolveum/midpoint
Browse files Browse the repository at this point in the history
* 'master' of github.com:Evolveum/midpoint:
  base sortable provider, improved detaching (available data cleared on detach)

* 'master' of github.com:Evolveum/midpoint:
  base sortable provider, improved detaching (available data cleared on detach)
  • Loading branch information
katkav committed Aug 29, 2023
2 parents 9a5a92d + 8480057 commit e1795fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,4 +376,13 @@ public void setExportSize(boolean exportSize) {
public boolean isUseCache() {
return useCache;
}

@Override
public void detach() {
super.detach();

if (availableData != null) {
availableData.clear();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import java.util.stream.Collectors;
import javax.xml.namespace.QName;

import com.evolveum.midpoint.gui.impl.util.IconAndStylesUtil;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.BooleanUtils;
import org.apache.commons.lang3.StringUtils;
Expand Down Expand Up @@ -56,6 +55,7 @@
import com.evolveum.midpoint.gui.impl.component.search.panel.SearchPanel;
import com.evolveum.midpoint.gui.impl.component.tile.*;
import com.evolveum.midpoint.gui.impl.page.self.PageRequestAccess;
import com.evolveum.midpoint.gui.impl.util.IconAndStylesUtil;
import com.evolveum.midpoint.prism.PrismContext;
import com.evolveum.midpoint.prism.PrismObject;
import com.evolveum.midpoint.prism.path.ItemPath;
Expand Down

0 comments on commit e1795fe

Please sign in to comment.