diff options
author | Keith Packard <keithp@keithp.com> | 2013-04-15 23:25:55 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-04-15 23:26:25 -0700 |
commit | 5b041769dc926f0aa18072f46abca60b11ede44b (patch) | |
tree | c5d52599338018ac1137ede7553a3750a6ec4829 /altosui/AltosFlightUI.java | |
parent | eba3aa949decacd5592472a3cda920aa6a06d96f (diff) |
altosui: remove debug message from AltosFlightUI
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosFlightUI.java')
-rw-r--r-- | altosui/AltosFlightUI.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/altosui/AltosFlightUI.java b/altosui/AltosFlightUI.java index 6b258f2e..6d010d23 100644 --- a/altosui/AltosFlightUI.java +++ b/altosui/AltosFlightUI.java @@ -101,10 +101,8 @@ public class AltosFlightUI extends AltosUIFrame implements AltosFlightDisplay, A public void show(AltosState state, AltosListenerState listener_state) { status_update.saved_state = state; - if (state == null) { - System.out.printf ("no state provided\n"); + if (state == null) state = new AltosState(new AltosRecord()); - } pad.show(state, listener_state); |