diff options
author | Keith Packard <keithp@keithp.com> | 2015-09-12 19:20:49 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-10-13 13:54:28 -0700 |
commit | 0afa07d3c1dcb5e301fcb8b4edfecdd961662478 (patch) | |
tree | bd0742a81d3ef60933358fa5151e5d49910cacbe /altosui/AltosUI.java | |
parent | 7064bc685aebeef07711e525dea4d5fbe33d235b (diff) |
altoslib: Hide 'state' member and use accessor function
Someone was smashing the state to 'landed' when no packets had been
received for a while. Found that by making it impossible for anyone
outside of AltosState to change the value.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r-- | altosui/AltosUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index f6caa4ef..c29f0db3 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -539,7 +539,7 @@ public class AltosUI extends AltosUIFrame { System.out.printf ("process cat\n"); for (AltosState state : eef) { System.out.printf ("tick %d state %d height %g\n", - state.tick, state.state, state.height()); + state.tick, state.state(), state.height()); if ((state.set & AltosState.set_gps) != 0) System.out.printf ("time %g lat %g lon %g alt %g\n", state.time_since_boost(), |