diff options
author | Keith Packard <keithp@keithp.com> | 2012-01-02 22:42:18 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-06-02 19:37:29 -0700 |
commit | 02b53b7f592b78b2fec4f4a17b6b3e114d2bf3c5 (patch) | |
tree | d9c7cfbce87486db0b4b672a67d4b7a986c5bddf | |
parent | 9fb15d397890c7e78bf3c1438f142f62bfc2bd35 (diff) |
altosui: Fix AltosTelemetryReader move
Lost the provided link value causing a crash.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/altoslib/src/org/altusmetrum/AltosLib/AltosTelemetryReader.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/altosui/altoslib/src/org/altusmetrum/AltosLib/AltosTelemetryReader.java b/altosui/altoslib/src/org/altusmetrum/AltosLib/AltosTelemetryReader.java index 2cc2822a..67ac1b65 100644 --- a/altosui/altoslib/src/org/altusmetrum/AltosLib/AltosTelemetryReader.java +++ b/altosui/altoslib/src/org/altusmetrum/AltosLib/AltosTelemetryReader.java @@ -105,6 +105,7 @@ public class AltosTelemetryReader extends AltosFlightReader { public AltosTelemetryReader (AltosLink in_link) throws IOException, InterruptedException, TimeoutException { + link = in_link; log = new AltosLog(link); name = link.name; previous = null; |