Skip to content

Commit

Permalink
BgGraphBuilder: revert HPointValue utilization
Browse files Browse the repository at this point in the history
  • Loading branch information
jamorham committed Aug 1, 2022
1 parent dd1af49 commit fb0098a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2104,7 +2104,7 @@ public Axis previewXAxis() {
public void showUnSmoothedValues(final List<BgReading> readings) {
pluginValues.clear();
for (val bgReading : readings) {
pluginValues.add(new HPointValue((double) (bgReading.timestamp / FUZZER), (float) unitized(bgReading.calculated_value)));
pluginValues.add(new PointValue((float) (bgReading.timestamp / FUZZER), (float) unitized(bgReading.calculated_value)));
}
}

Expand Down

0 comments on commit fb0098a

Please sign in to comment.