Skip to content

Commit

Permalink
fix: Update code
Browse files Browse the repository at this point in the history
  • Loading branch information
larshelge committed Nov 26, 2024
1 parent a64424f commit f5a7236
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -573,12 +573,12 @@ private List<AnalyticsTableColumn> getAttributeColumns(Program program) {
List<AnalyticsTableColumn> columns = new ArrayList<>();
columns.addAll(
program.getNonConfidentialTrackedEntityAttributes().stream()
.map(tea -> getColumnForAttribute(tea))
.map(this::getColumnForAttribute)
.flatMap(Collection::stream)
.toList());
columns.addAll(
program.getNonConfidentialTrackedEntityAttributesWithLegendSet().stream()
.map(tea -> getColumnForAttributeWithLegendSet(tea))
.map(this::getColumnForAttributeWithLegendSet)
.flatMap(Collection::stream)
.toList());
return columns;
Expand Down

0 comments on commit f5a7236

Please sign in to comment.