Fix live port regression

This commit is contained in:
BoykoAlex
2021-07-28 09:06:00 -04:00
parent fba0e05466
commit 72d4f43810

View File

@@ -155,7 +155,7 @@ public class BootProjectDashElement extends AbstractLaunchConfigurationsDashElem
private ObservableSet<Integer> getLivePortsExp() {
if (ports==null) {
ports = createSortedLiveSummary((BootDashElement element) -> {
int port = CollectionUtils.getAnyOr(getLivePorts(), -1);;
int port = CollectionUtils.getAnyOr(element.getLivePorts(), -1);
if (port>0) {
return port;
}