OpenCDSS / cdss-lib-common-java

Colorado's Decision Support Systems (CDSS) common library (Java)
GNU General Public License v3.0
0 stars 1 forks source link

Table view - fix bug where irregular time series is showing points after ReplaceValue removes #205

Closed smalers closed 1 year ago

smalers commented 1 year ago

I recently enhanced the ReplaceValue command to remove missing values from irregular interval time series. The workflow output is OK but the UI table view shows the old results.

smalers commented 1 year ago

The bug was in IrregularTS.removeDataPoint, due to removing a TSData object but not resetting the previous and next pointers for adjoining objects. Therefore, the table view was showing old data that had not been removed and garbage collected. Close this issue.