diff options
author | Keith Packard <keithp@keithp.com> | 2017-05-26 17:14:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-05-26 17:14:29 -0700 |
commit | fd738d47bbc46d36698350d5450abe1125d990a3 (patch) | |
tree | b44a51bf4cb53a406358a7223176a30a8840c16d /altoslib/AltosCSV.java | |
parent | af3c7938f24dcf5ffbce024ed596655b26282cf1 (diff) |
altoslib: Make sure AltosFlightSeries is filled in before use
After all of the raw data is captured, the derived data needs to be
computed by calling the 'finish' function.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosCSV.java')
-rw-r--r-- | altoslib/AltosCSV.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altoslib/AltosCSV.java b/altoslib/AltosCSV.java index 38afdc64..5117a702 100644 --- a/altoslib/AltosCSV.java +++ b/altoslib/AltosCSV.java @@ -393,7 +393,7 @@ public class AltosCSV implements AltosWriter { this.series = series; - series.fill_in(); + series.finish(); has_flight_state = false; has_basic = false; |