Skip to content

Commit

Permalink
[ALS-5112] Test fix for Variable Dist Graph
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Oct 4, 2023
1 parent cc42f3a commit 426053d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public List<ContinuousData> getContinuousData(Map<String, Map<String, Integer>>
// binnedData = new LinkedHashMap<>(entry.getValue());
// }

LinkedHashMap<String, Integer> binnedData = new LinkedHashMap<>(entry.getValue()); // re-binning data should be safe.
LinkedHashMap<String, Integer> binnedData = new LinkedHashMap<>(bucketData(entry.getValue())); // re-binning data should be safe.

continuousDataList.add(new ContinuousData(
title,
Expand Down

0 comments on commit 426053d

Please sign in to comment.