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 0b4011c commit cc42f3a
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());
LinkedHashMap<String, Integer> binnedData = new LinkedHashMap<>(entry.getValue()); // re-binning data should be safe.

continuousDataList.add(new ContinuousData(
title,
Expand Down

0 comments on commit cc42f3a

Please sign in to comment.