Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/plot/chart/MCTChartPointSet.js')
-rw-r--r--src/plugins/plot/chart/MCTChartPointSet.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/plot/chart/MCTChartPointSet.js b/src/plugins/plot/chart/MCTChartPointSet.js
index 190075ee0..b7bb40ec9 100644
--- a/src/plugins/plot/chart/MCTChartPointSet.js
+++ b/src/plugins/plot/chart/MCTChartPointSet.js
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Open MCT, Copyright (c) 2014-2021, United States Government
+ * Open MCT, Copyright (c) 2014-2022, United States Government
* as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved.
*
@@ -24,7 +24,7 @@ import MCTChartSeriesElement from './MCTChartSeriesElement';
// TODO: Is this needed? This is identical to MCTChartLineLinear. Why is it a different class?
export default class MCTChartPointSet extends MCTChartSeriesElement {
- addPoint(point, start, count) {
+ addPoint(point, start) {
this.buffer[start] = point.x;
this.buffer[start + 1] = point.y;
}