diff options
| author | Keith Packard <keithp@keithp.com> | 2014-05-15 23:57:50 -0600 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2014-05-15 23:57:50 -0600 | 
| commit | eeacc001ba089b4bf5552b8ef36e61a0a96efabe (patch) | |
| tree | ea6b893bb23f7ce5cb77e20dedae7f4423c038c4 | |
| parent | 6833e466d7d77765199bf4d21437c34a4eceb044 (diff) | |
altosui: Remove debug printf about beep config
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | altoslib/AltosConfigData.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/altoslib/AltosConfigData.java b/altoslib/AltosConfigData.java index 750faa71..213d8f13 100644 --- a/altoslib/AltosConfigData.java +++ b/altoslib/AltosConfigData.java @@ -292,7 +292,7 @@ public class AltosConfigData implements Iterable<String> {  		try { aprs_interval = get_int(line, "APRS interval:"); } catch (Exception e) {}  		/* HAS_BEEP */ -		try { beep = get_int(line, "Beeper setting:"); System.out.printf ("beeper now %d\n", beep); } catch (Exception e) {} +		try { beep = get_int(line, "Beeper setting:"); } catch (Exception e) {}  		/* Storage info replies */  		try { storage_size = get_int(line, "Storage size:"); } catch (Exception e) {} | 
