Skip to content

Commit

Permalink
[ALS-4957] Fix getCategoricalData
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Nov 2, 2023
1 parent 36c315f commit 6d2820b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public List<CategoricalData> getCategoricalData(Map<String, Map<String, Integer>

for (Map.Entry<String, Map<String, Integer>> entry : crossCountsMap.entrySet()) {
Map<String, Integer> axisMap;
if (isOpenAccess) {
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;
Expand Down

0 comments on commit 6d2820b

Please sign in to comment.