Skip to content

Commit

Permalink
[ALS-5356] Remove empty harmonized consent graph
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Nov 16, 2023
1 parent c2d81cd commit a5224f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ public List<CategoricalData> getCategoricalData(Map<String, Map<String, Integer>

for (Map.Entry<String, Map<String, Integer>> entry : crossCountsMap.entrySet()) {
Map<String, Integer> axisMap;
if (VisualizationUtil.skipKey(entry.getKey())) continue;
if (!isOpenAccess) {
// If open access we need to process the data
// skipKey is expecting an entrySet, so we need to convert the axisMap to an entrySet
if (VisualizationUtil.skipKey(entry.getKey())) continue;
axisMap = VisualizationUtil.doProcessResults(entry.getValue());
} else {
axisMap = new LinkedHashMap<>(entry.getValue());
Expand Down

0 comments on commit a5224f5

Please sign in to comment.