Revision ec07174a
Added by Andreas Müller over 3 years ago
app-import/src/main/java/eu/etaxonomy/cdm/app/berlinModelImport/EuroMedActivator.java | ||
---|---|---|
20 | 20 |
import java.util.Map; |
21 | 21 |
import java.util.Set; |
22 | 22 |
import java.util.UUID; |
23 |
import java.util.stream.Collectors; |
|
23 | 24 |
|
24 | 25 |
import org.apache.log4j.Logger; |
25 | 26 |
import org.springframework.security.core.GrantedAuthority; |
... | ... | |
475 | 476 |
DistributionAggregationConfiguration aggregationConfig = DistributionAggregationConfiguration |
476 | 477 |
.NewInstance( |
477 | 478 |
AggregationMode.byAreasAndRanks(), |
478 |
areaPager.getRecords(), |
|
479 |
areaPager.getRecords().stream().map(area->area.getUuid()).collect(Collectors.toList()),
|
|
479 | 480 |
filter, |
480 | 481 |
DefaultProgressMonitor.NewInstance()); |
481 | 482 |
distributionAggregation.invoke(aggregationConfig, app); |
Also available in: Unified diff
fix E+M Activator